.NET Framework 版本:2.0.50727.8669
Foxtable 版本:2017.7.28.1
错误所在事件:表,投标收入,DataColChanged
详细错误信息:
调用的目标发生了异常。
没有要访问的 Current 数据。
If e.DataCol.Name = "登记日期" Then
If e.DataRow.IsNull("登记日期") Then
e.DataRow("编号") = Nothing
Else
Dim d As Date = e.DataRow("登记日期")
Dim y As Integer = d.Year
Dim m As Integer = d.Month
Dim Days As Integer = Date.DaysInMonth(y,m)
Dim fd As Date = New Date(y,m,1) '获得该月的第一天
Dim ld As Date = New Date(y,m,Days) '获得该月的最后一天
Dim bh As String = Format(d,"yyyyMM") '生成编号的前6位,4位年,2位月.
If e.DataRow("编号").StartsWith(bh) = False '如果编号的前6位不符
Dim max As String
Dim idx As Integer
max = e.DataTable.sqlCompute("Max(编号)","登记日期 >= '" & fd & "' And 登记日期 <= '" & ld & "' And [_Identify] <> " & e.DataRow("_Identify")) '取得该月的最大编号
If max > "" Then '如果存在最大编号
idx = CInt(max.Substring(10)) + 1 '获得最大编号的后2位顺序号,并加1
Else
idx = 1 '否则顺序号等于1
End If
e.DataRow("编号") = "tbsr" & bh & Format(idx,"000")
'e.DataRow("编号") = "tblx" & bh & "-" & Format(idx,"00")
End If
End If
End If
'----------------不能大于今天--------------------
Select Case e.DataCol.Name
Case "收入时间"
If e.DataRow("收入时间") > Date.Today() Then
MessageBox.Show("收款时间不能大于今天")
Else
End If
End Select
'----------------计算合计--------------------
Select Case e.DataCol.Name
Case "单价","数量"
If e.DataRow.Isnull("项目名称") Then
e.DataRow("合计") = Nothing
Else
e.DataRow("合计") =e.DataRow("数量") * e.DataRow("单价")
End If
End Select
'----------------将数据复制到另一表--------------------
Dim fdr As DataRow = DataTables("投标立项").sqlFind("项目名称 = '" & e.DataRow("项目名称") & "'")
If fdr IsNot Nothing Then
fdr("收入金额") = DataTables("投标收入").Compute("sum(合计)","项目名称 = '" & fdr("项目名称") & "'")
End If
之前一直正常的 前天升级后发布了一下 就这样子了 会不会是程序BUG
[此贴子已经被作者于2017/7/31 9:03:35编辑过]