以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- [求助]复选框选中与取消选中操作代码 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=45887) |
-- 作者:红颜 -- 发布时间:2014/2/13 8:32:00 -- [求助]复选框选中与取消选中操作代码 选中:
For Each dr As Row In Tables("打印发票_Table1").GetCheckedRows dr("DY") = False Next 取消选中后: ,,,,,,, dr("DY") = Ture 要求:选中后为False,取消选中后为Ture 窗口表AfterCheckRow事件
[此贴子已经被作者于2014-2-13 8:33:49编辑过]
|
-- 作者:Bin -- 发布时间:2014/2/13 8:40:00 -- AfterCheckRow事件 e.Row("DY")=not e.Row.Checked
|