GH20190329-001GH20190329-002
GH20190329-003
.
..
...
要做这样的自动编号,代码哪里还需要修改?
If e.DataCol.Name = "过磅日期" Then
If e.DataRow.IsNull("过磅日期") Then
e.DataRow("过磅编号") = Nothing
Else
Dim bh As String = "GB" & Format(e.DataRow("过磅日期"),"yyyyMMdd") '取得过磅编号的8位前缀
If e.DataRow("过磅编号").StartsWith(bh) = False '如果过磅编号的前8位不符
Dim max As String
Dim idx As Integer
Dim d As Date = e.DataRow("过磅日期").Date
max = e.DataTable.Compute("Max(过磅编号)","过磅日期 >= #" & d & "# And 过磅日期 < #" & d.adddays(1) & "# And [_Identify] <> " & e.DataRow("_Identify")) '取得该月的最大编号
If max > "" Then '如果存在最大过磅编号
idx = CInt(max.Substring(9,3)) + 1 '获得最大过磅编号的后三位顺序号,并加1
Else
idx = 1 '否则顺序号等于1
End If
e.DataRow("过磅编号") = bh & "-" & Format(idx,"000")
End If
End If
End If
提示错误:
.NET Framework 版本:2.0.50727.5485
Foxtable 版本:2018.10.9.1
错误所在事件:表,过磅表,DataColChanged
详细错误信息:
调用的目标发生了异常。
从字符串“9-0”到类型“Integer”的转换无效。
输入字符串的格式不正确。