以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  这样写不行吗  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=68416)

--  作者:xjc620
--  发布时间:2015/5/17 14:03:00
--  这样写不行吗
If e.Col.Name <> "开单_郑哥" Then e.Cancel = True
If e.Col.Name <> "开单_金航" Then e.Cancel = True
If e.Col.Name <> "检测" Then e.Cancel = True

为什么这样写整个表全不能编辑了

--  作者:大红袍
--  发布时间:2015/5/17 14:09:00
--  

 If e.Col.Name <> "开单_郑哥" AndAlso e.Col.Name <> "开单_金航" AndAlso e.Col.Name <> "检测" Then

     e.Cancel = True

 End If