以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 如何用代码不显示组合框的第2个内容 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=194633) |
-- 作者:fvcfox -- 发布时间:2024/12/31 8:37:00 -- 如何用代码不显示组合框的第2个内容 如题 |
-- 作者:有点蓝 -- 发布时间:2024/12/31 8:40:00 -- 组合框的内容是怎么添加的? |
-- 作者:fvcfox -- 发布时间:2024/12/31 11:22:00 -- 组合框控件的自定义预设值 |
-- 作者:有点蓝 -- 发布时间:2024/12/31 11:47:00 -- Dim cbo As WinForm.ComboBox = e.Form.Controls("ComboBox1") Dim s As String = cbo.ComboList Dim ss() As String = s.Split("|") If ss.Length > 1 Then cbo.ComboList = s.Replace("|" & ss(1) & "|", "|") End If
|