以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  锁定行后怎么对单独的一个单元格取消锁定呢?  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=125971)

--  作者:hc-mall
--  发布时间:2018/10/10 22:15:00
--  锁定行后怎么对单独的一个单元格取消锁定呢?
Case "已过帐"
If e.NewValue = True Then
e.DataRow.Locked = True
e.DataCol.AllowEdit = True
End If
End Select
点击已过账勾选框以后,连已过账勾选框也锁定了,想取消勾选都不行了!怎么办?

--  作者:有点甜
--  发布时间:2018/10/10 22:50:00
--  

click或者doubleclick事件

 

If e.Col.name = "审核" Then
    e.Row("审核") = not e.Row("审核")
    If e.Row("审核") = True Then
        e.Row.locked = True
    End If
End If