以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 窗体去掉逻辑列中行的勾选值? (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=74906) |
||||
-- 作者:fytea -- 发布时间:2015/9/22 15:01:00 -- 窗体去掉逻辑列中行的勾选值? 功夫茶大红袍: If e.DataCol.Name = "是否" Then If e.NewValue = True Then e.DataRow.Locked = True End If
窗体解锁 With Tables("是否")
问题:解锁后,复选框的勾,该如何取消
|
||||
-- 作者:大红袍 -- 发布时间:2015/9/22 15:07:00 -- With Tables("表a") If .Current IsNot Nothing Then .Current.Locked = False .Current("是否") = False End If End With |