以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 自动编号怎么不受打开和关闭项目的影响 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=72236) |
-- 作者:JPG7 -- 发布时间:2015/7/26 15:43:00 -- 自动编号怎么不受打开和关闭项目的影响 下边这段代码是按年月日生成代码,但是每次重新打开项目,都会重新从001开始编号,怎么解决这个问题啊 If e.DataCol.Name = "日期" ThenIf e.DataRow.IsNull("日期") Then e.DataRow("编号") = Nothing Else Dim bh As String = Format(e.DataRow("日期"),"yyyyMMdd") \'取得编号的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(9,3)) + 1 \'获得最大编号的后三位顺序号,并加1 Else idx = 1 \'否则顺序号等于1 End If e.DataRow("编号") = bh & "-" & Format(idx,"000") End If End If End If |
-- 作者:大红袍 -- 发布时间:2015/7/26 15:47:00 -- 重新打开不可能从001开始,除非你的编号没有被保存下来。 |
-- 作者:JPG7 -- 发布时间:2015/7/26 18:51:00 -- 回复:(大红袍) 重新打开不可能从001开始,除非... 额,那我再试试 |
-- 作者:jfaiwefjowejf -- 发布时间:2015/8/5 10:53:00 -- 学习 |