以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 角色 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=64761) |
||||
-- 作者:ss -- 发布时间:2015/3/1 3:30:00 -- 角色 请教老师我本意是想当审核列打勾时只有审核角色的人才可以编辑此行,但为什么我这段代码却正好想反,除了审核角色的用户不能编辑外其它的都可以编辑此行? If e.Row("审核") = True AndAlso User.IsRole("审核") Then e.Cancel = True End If
|
||||
-- 作者:有点甜 -- 发布时间:2015/3/1 9:24:00 -- If e.Row("审核") = True AndAlso User.IsRole("审核") = False Then
e.Cancel = True
End If
|
||||
-- 作者:ss -- 发布时间:2015/3/1 23:23:00 -- 为什么是User.IsRole("审核") = False 呢? |
||||
-- 作者:ss -- 发布时间:2015/3/1 23:24:00 -- 想明白了.谢谢老师 |