我有一段代码能在狐表以前的版本能运行,最近新的版本有一行代码不能运不知道怎么回事?
max = e.DataTable.Compute("Max(派车单号)","出车时间 >= #"
&
fd
&
"# And 出车时间 <= #"
&
ld
&
"# And [_Identify] <> "
&
e.DataRow("_Identify"))
出现以下错误
.NET Framework 版本:2.0.50727.5485
Foxtable 版本:2015.12.22.1
错误所在事件:表,行车日志,DataColChanged
详细错误信息:
调用的目标发生了异常。
该字符串未被识别为有效的 DateTime。有一个从索引 9 处开始的未知字。
把"出车时间 >= #"
&
fd
&
"# And 出车时间 <= #"
&
ld
&
"#去掉就运行正常
以下是全部代码
If e.DataCol.Name = "出车时间" Then
If e.DataRow.IsNull("出车时间") Then
e.DataRow("派车单号") = Nothing
e.DataRow("星期") = Nothing
e.DataRow("月份") = Nothing
e.DataRow("年份") = Nothing
Else
Dim d As Date = e.DataRow("出车时间")
Dim y As Integer = d.Year
Dim fd As Date = New Date(y,1,1) '获得该月的第一天
Dim ld As Date = New Date(y,12,31) '获得该月的最后一天
Dim bh As String = Format(d,"yyyy") & "年岳检车派字第" '生成编号的前4位,4位年
If e.DataRow("派车单号").StartsWith(bh) = False '如果编号的前6位不符
Dim max As String
Dim idx As Integer
max = e.DataTable.Compute("Max(派车单号)","出车时间 >= #"
&
fd
&
"# And 出车时间 <= #"
&
ld
&
"# And [_Identify] <> "
&
e.DataRow("_Identify")) '取得该月的最大编号
If max > "" Then '如果存在最大编号
idx = CInt(max.Substring(11,4)) + 1 '获得最大编号的后三位顺序号,并加1
Else
idx = 1 '否则顺序号等于1
End If
e.DataRow("派车单号") = bh & Format(idx,"0000") & "号"
e.DataRow("星期") = Format(e.DataRow("出车时间"),"dddd")
e.DataRow("年份") = Format(e.DataRow("出车时间"),"yyy")
e.DataRow("月份") = Format(e.DataRow("出车时间"),"MMM")
End If
End If
End If