以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  [求助] 简化命令  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=52927)

--  作者:wumingrong1
--  发布时间:2014/6/25 17:35:00
--  [求助] 简化命令
下面命令如何简化

If e.Col.Name = "分公司"  Then
    e.Cancel = True \'禁止进入编辑状态

End If

If e.Col.Name = "操作记录_增加人员"  Then
    e.Cancel = True \'禁止进入编辑状态

End If

If e.Col.Name = "操作记录_增加日期"  Then
    e.Cancel = True \'禁止进入编辑状态

End If

If e.Col.Name = "操作记录_修改人员"  Then
    e.Cancel = True \'禁止进入编辑状态

End If

If e.Col.Name = "操作记录_修改日期"  Then
    e.Cancel = True \'禁止进入编辑状态

End If

--  作者:Bin
--  发布时间:2014/6/25 17:37:00
--  
select case e.Col.Name 
         case  "分公司","操作记录_增加人员","操作记录_增加日期"
            e.cancel=true
end select