以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  怎样判断CheckedListBox的栏目没有选中  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=172968)

--  作者:fvcfox
--  发布时间:2021/11/9 11:23:00
--  怎样判断CheckedListBox的栏目没有选中
如题
--  作者:fvcfox
--  发布时间:2021/11/9 11:29:00
--  
知道用这个判断了
CheckedIndices.Count
--  作者:fvcfox
--  发布时间:2021/11/9 12:04:00
--  
这样是获取到选中的位置,如果想得到位置的对应栏目内容,应怎样改?
For Each c1 As Integer In cl1.CheckedIndices
ss=ss & " and 部门=\'" & c1 & "\'"
Next
msgbox(ss)