以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]CheckedListBox复选多选框的清除-全选-反选 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=89805) |
||||
-- 作者:jyh7081 -- 发布时间:2016/8/30 13:20:00 -- [求助]CheckedListBox复选多选框的清除-全选-反选 CheckedListBox复选多选框数据取自当前表的“名称”列,窗口afterload事件代码为:
Dim cmb As WinForm.CheckedListBox = e.form.Controls("CheckedListBox1")
求写复选多选框的清除-全选-反选代码。谢谢!
附件:
|
||||
-- 作者:Hyphen -- 发布时间:2016/8/30 14:43:00 -- 认认真真看完帮助关于这个控件的用法:http://www.foxtable.com/webhelp/scr/0948.htm |
||||
-- 作者:jyh7081 -- 发布时间:2016/8/30 16:25:00 -- 1、清除代码: Dim lst As WinForm.CheckedListBox 2、全选代码: Dim lst As WinForm.CheckedListBox 3、反选代码???
|
||||
-- 作者:Hyphen -- 发布时间:2016/8/30 16:51:00 -- Dim lst As WinForm.CheckedListBox lst = Forms("窗口1").Controls("CheckedListBox1") For Index As Integer = 0 To lst.Items.Count - 1 lst.SetItemChecked(Index, Not lst.GetItemChecked(Index)) Next
|