以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 两列不能同时有数据 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=106502) |
-- 作者:zoyong -- 发布时间:2017/9/10 16:12:00 -- 两列不能同时有数据 "支出类别" 与 "收入类别" 不能同时有数据 ChangeEdit: select case e.col.name case "支出类别","收入类别" If e.Row.isnull("收入类别")=False Then e.Row("支出类别") = Nothing e.Row("支出") = Nothing ElseIf e.Row.isnull("支出类别")=False Then e.Row("收入类别") = Nothing e.Row("收入") = Nothing End If end select
|
-- 作者:有点甜 -- 发布时间:2017/9/10 16:21:00 -- DataColChanged事件
Select Case e.DataCol.name |