以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  自动编号出现重复不知是怎么一回事?  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=66426)

--  作者:ss
--  发布时间:2015/4/6 15:42: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 \'如果编号的前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

--  作者:Bin
--  发布时间:2015/4/7 9:17:00
--  
多人使用不能用这个方案


--  作者:ss
--  发布时间:2015/4/7 11:31:00
--  
请问下Bin老师,您提供的帮助里的范例只能是用在SQL数据源吗?Access行不行?
--  作者:Bin
--  发布时间:2015/4/7 11:33:00
--  
当然可以