以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  连续自动编号问题  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=93196)

--  作者:douglas738888
--  发布时间:2016/11/22 17:19:00
--  连续自动编号问题

请教老师,下面代码在一个表里连续增加行自动编号能实现,如果是几个客户端不同时间增加行后,编号就不会自动连续,而且重号

 

If e.DataCol.Name = "计划开始时间" Then
    If e.DataRow.IsNull("计划开始时间") Then
        e.DataRow("明细索引") = Nothing
    Else
        Dim bh As String = Format(e.DataRow("计划开始时间"),"yyyyMMdd") \'取得编号的8位前缀
        If e.DataRow("明细索引").StartsWith(bh) = False \'如果编号的前6位不符
            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(8,4)) + 1 \'获得最大编号的后三位顺序号,并加1
            Else
                idx = 1 \'否则顺序号等于1
            End If
            e.DataRow("明细索引") = bh & Format(idx,"0000")
        End If
    End If
End If


--  作者:有点蓝
--  发布时间:2016/11/22 17:23:00
--  
参考:http://www.foxtable.com/webhelp/scr/3008.htm
--  作者:douglas738888
--  发布时间:2016/11/22 17:55:00
--  
老师,没有使用OPENQQ也可以参照编号吗
--  作者:有点蓝
--  发布时间:2016/11/22 17:59:00
--  
参考:http://foxtable.com/bbs/dispbbs.asp?BoardID=2&ID=61848