以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  逻辑列选择后需要编辑的行部分不可编辑  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=141316)

--  作者:xlrboy
--  发布时间:2019/9/26 14:33:00
--  逻辑列选择后需要编辑的行部分不可编辑
If User.Name <> "管理员"  Then
    If e.Row("领取确认") = True Then
        e.cancel = True
    End If
End If

现在需要领取确认打钩后,打钩的这行除备注列其他的列不可编辑,如何修改呢?

--  作者:有点蓝
--  发布时间:2019/9/26 15:04:00
--  
If User.Name <> "管理员"  Then
if e.col.name <> "备注"
    If e.Row("领取确认") = True Then
        e.cancel = True
    End If
end if
End If