Select Case e.DataCol.Name
Case "日期"
If e.DataRow.IsNull("日期") Then
e.DataRow("年度") = Nothing
Else
e.DataRow("年度") = cdate(e.DataRow("日期")).year
End If
End Select
能不给这个代码加个条件了(当前行的 待收ID 这列为空值才可用)
Select Case e.DataCol.Name
Case "日期"
If e.DataRow.IsNull("日期") Then
e.DataRow("年度") = Nothing
Else
e.DataRow("年度") = cdate(e.DataRow("日期")).year
End If
End Select
If e.DataCol.Name = "待收ID" Then '发生变化的是产品编号吗?
'在产品表找出该产品
Dim dr As DataRow
dr = DataTables("待收").Find("待收ID = " & "'" & e.DataRow("待收ID") & "'" )
If dr IsNot Nothing '如果找到, 则设置各列内容
e.DataRow("来往单位")= dr("来往单位")
e.DataRow("年度")= dr("年度")
e.DataRow("项目")= dr("项目")
e.DataRow("项目明细")= dr("项目明细")
我在行变化事件同时写这2个代码,现在是可以用,但不知会不会有冲突。
[此贴子已经被作者于2012-2-22 17:00:47编辑过]