Foxtable(狐表)用户栏目专家坐堂 → [求助]逻辑列的问题


  共有2307人关注过本帖树形打印复制链接

主题:[求助]逻辑列的问题

帅哥哟,离线,有人找我吗?
wyz20130512
  1楼 | QQ | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:六尾狐 帖子:1249 积分:9480 威望:0 精华:0 注册:2013/5/12 9:22:00
  发帖心情 Post By:2019/3/2 23:28:00 [显示全部帖子]

Controls("CheckBoxA")的CheckedChanged事件代码:

If e.Sender.Name = "CheckBoxA" Then
    Dim t As Table = Tables(e.Form.TableName)
    If e.Sender.Checked = True Then
        For Each r As Row In t.Rows
            r("锁定A组")  = True
        Next
    Else
        For Each r As Row In t.Rows
            r("锁定A组")  = False
        Next
    End If
End If

Controls("CheckBoxB")的CheckedChanged事件代码:

If e.Sender.Name = "CheckBoxB" Then
    Dim t As Table = Tables(e.Form.TableName)
    If e.Sender.Checked = True Then
        For Each r As Row In t.Rows
            r("锁定A组")  = True
            r("锁定B组")  = True
        Next
    Else
        For Each r As Row In t.Rows
            r("锁定B组")  = False
        Next
    End If
End If

 回到顶部