老师,你好,我之前的提问如下
http://www.foxtable.com/bbs/dispbbs.asp?BoardID=2&replyID=724111&ID=105813&skin=1
按照您的指点
出库表,,datarowadded事件,中用如下代码:
Dim bh As String = Format(e.DataRow("日期"),"QCyyyyMMdd-") '取得出库编号的8位前缀
If e.DataRow("出库编号").StartsWith(bh) = False '如果出库编号的前8位不符
Dim max As String
Dim idx As Integer
max = e.DataTable.Compute("Max(出库编号)","日期 = #" & e.DataRow("日期") & "# And [_Identify] <> " & e.DataRow("_Identify")) '取得该天的最大出库编号
If max > "" Then '如果存在最大出库编号
idx = CInt(max.Substring(bh.Length - 3,3)) + 1 '获得最大出库编号的后三位顺序号,并加1
Else
idx = 1 '否则顺序号等于1
End If
e.DataRow("出库编号") = bh & Format(idx,"000")
End If
增加行后,第一个是对的,以后的每一个都是025的编号,如图
此主题相关图片如下:4.png
如果不要日期列
daterowadding事件中用如下代码:
Dim bh As String = Format(e.DataRow("日期"),"QCyyyyMMdd-")
Dim max As String
Dim idx As Integer
max = e.DataTable.Compute("Max(出库编号)","出库编号 like '" & bh & "%'") '查询此前缀的不好的最大值
If max > "" Then '如果存在最大编号
idx = CInt(max.Substring(bh.Length - 3,3)) + 1
Else
idx = 1
End If
e.DataRow("出库编号") = bh & Format(idx,"000")
结果每一行都是错的。请老师帮助
此主题相关图片如下:3.png