以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- CheckedListBox1如果加入值即选中 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=71094) |
-- 作者:santde -- 发布时间:2015/7/4 19:03:00 -- CheckedListBox1如果加入值即选中 Dim ckl As WinForm.CheckedListBox = e.Form.Controls("CheckedListBox1")
这加入的值默认是不选中的,如何一加入就选中呢 |
-- 作者:y2287958 -- 发布时间:2015/7/4 19:13:00 -- Dim ckl As WinForm.CheckedListBox = e.Form.Controls("CheckedListBox1") For Each dc As Col In Tables("表A").Cols If dc.Visible=True Then ckl.Items.Add(dc.name) End If Next ckl.Value = ckl.ComboList.Replace("|",",")
|