以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助]自动编号  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=148084)

--  作者:老鼠
--  发布时间:2020/3/30 22:35:00
--  [求助]自动编号
求DatacolChanged事件代码,自动编号。
 下载信息  [文件大小:   下载次数: ]
图片点击可在新窗口打开查看点击浏览该文件:管理项目1.table


--  作者:有点蓝
--  发布时间:2020/3/30 22:44:00
--  
参考:http://www.foxtable.com/webhelp/topics/2403.htm

三、按类别编号,示例类型从本表取,改为查表从表B获取即可

--  作者:老鼠
--  发布时间:2020/3/31 9:16:00
--  

我自己也看到了这个例子,但还不会修改。

Select e.DataCol.Name
    Case
"类别"
       
If e.DataRow.IsNull("类别") Then
            e.
DataRow("编号") = Nothing
        Else
            Dim
lb As String = e.DataRow("类别")
            If
e.DataRow("编号").StartsWith(lb) = False \'如果单据编号前缀不符
               
Dim max As String
               
Dim idx As Integer

                max = e.DataTable.Compute("Max(编号)","类别 = \'" & lb & "\' And [_Identify] <> " & e.DataRow("_Identify")) \'取得该类别的最大编号
               
If max > "" Then \'如果存在最大编号
                    idx = CInt(max.Substring(
2,3)) + 1 \'获得最大编号的后三位顺序号,并加1
               
Else
                    idx =
1 \'否则顺序号等于1
               
End If
                e.
DataRow("编号") = lb & Format(idx,"000")
            End
If
        End
If
End
Select


以上代码中是不是只要修改:Dim lb As String = e.DataRow("类别")

如何修改还请老师指点。


--  作者:huangfanzi
--  发布时间:2020/3/31 9:44:00
--  
你是要从表B查找生成编号,那么,像max = e.DataTable.Compute 中的e.DataTable就不对了,这是代表本表
--  作者:有点蓝
--  发布时间:2020/3/31 9:44:00
--  
Select e.DataCol.Name
    Case "生产车间"
        If e.DataRow.IsNull("生产车间") Then
            e.DataRow("自动编码") = Nothing
        Else
            Dim dr As DataRow = DataTables("表B").find("车间名称=\'" & e.DataRow("生产车间") & "\'")
            If dr IsNot Nothing
                If cstr(e.DataRow("自动编码")).StartsWith(dr("编码")) = False \'如果单据自动编码前缀不符
                    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(1)) + 1 \'获得最大自动编码的后三位顺序号,并加1
                    Else
                        idx = 1 \'否则顺序号等于1
                    End If
                    e.DataRow("自动编码") = dr("编码") & Format(idx,"00000000")
                End If
            End If
        End If
End Select

--  作者:老鼠
--  发布时间:2020/3/31 9:48:00
--  
以下是引用huangfanzi在2020/3/31 9:44:00的发言:
你是要从表B查找生成编号,那么,像max = e.DataTable.Compute 中的e.DataTable就不对了,这是代表本表
我的理解,这句是对的。这是找最大值,我的编号是在本表。
上面的红色行以下我个人认为都是可以直接引用的。只是上面的不知道如何修改

[此贴子已经被作者于2020/3/31 9:49:31编辑过]

--  作者:有点蓝
--  发布时间:2020/3/31 10:01:00
--  
看5楼
--  作者:老鼠
--  发布时间:2020/3/31 10:05:00
--  
谢谢!