以文本方式查看主题

-  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=29728)

--  作者:郭长青
--  发布时间:2013/3/12 14:37:00
--  [求助]
能不能设置“限制某个用户编辑整个项目”
让其他用户只能看不能修改


--  作者:狐狸爸爸
--  发布时间:2013/3/12 14:39:00
--  

你可以锁定整个项目,在AfterOpenProject事件加入代码:

 

If User.Name  <> "张三" Then

    DataTables.AllowEdit = False
End If