以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  [求助]复选框问题  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=104498)

--  作者:轩辕绝
--  发布时间:2017/7/31 0:11:00
--  [求助]复选框问题
请问,窗口 表格控件中的 复选框  如何实现只能单选?


--  作者:有点甜
--  发布时间:2017/7/31 8:53:00
--  

aftercheckrow事件

 

If e.Row.Checked Then
    For Each r As Row In e.Table.GetCheckedRows
        If  r.index <> e.Row.index
            r.Checked  = False
        endif
    Next
End If