以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  两列不能同时有数据  (http://foxtable.com/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
    Case "支出类别"
        If  e.DataRow.isnull("支出类别")=False Then
            e.DataRow("收入类别") = Nothing
            e.DataRow("收入") = Nothing
        End If
    Case "收入类别"
        If e.DataRow.isnull("收入类别")=False Then
            e.DataRow("支出类别") = Nothing
            e.DataRow("支出") = Nothing
        End If
End Select