以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  录入限制设置  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=10274)

--  作者:明丰
--  发布时间:2011/5/27 17:14:00
--  录入限制设置
当逻辑列打勾时,比率列等于0,且比率列不能再修改,请问如何设置?
--  作者:狐狸爸爸
--  发布时间:2011/5/27 17:41:00
--  

PrePareEdit事件:

 

If e.Col.Name = "比率"  AndAlso e.Row.IsNull("比率") = False AndAlso e.Row("比率") = 0 AndAlso e.Row("逻辑列") = True Then

     e.CAncel = True

End If