以文本方式查看主题

-  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=55592)

--  作者:jk362223
--  发布时间:2014/8/19 17:54:00
--  从后台提取数据的自动编号问题?

自动编号生成方法

一、按月生成编号

要自动生成上述编号,只需将表事件DataColChanged的代码设置为:

If e.DataCol.Name = "日期" Then
    If e.DataRow.IsNull(
"
日期") Then
        e.DataRow(
"
编号") = Nothing
    Else
        Dim d As Date = e.DataRow(
"
日期")
        Dim y As Integer = d.Year
        Dim m As Integer = d.Month
        Dim Days As Integer = Date.DaysInMonth(y,m)
        Dim fd As Date = New Date(y,m,1)
\'
获得该月的第一天
        Dim ld As Date = New Date(y,m,Days)
\'
获得该月的最后一天
       
Dim bh As String = Format(d,"yyyyMM") \'生成编号的前6位,4位年,2位月.
        If e.DataRow("编号").StartsWith(bh) = False \'如果编号的前6位不符
            Dim max As String
            Dim idx As Integer
            max = e.DataTable.Compute("Max(编号)","日期 >= #" & fd & "# And 日期 <= #" & ld & "# And [_Identify] <> " & e.DataRow("_Identify")) \'取得该月的最大编号
            If max > "" Then \'如果存在最大编号
                idx = CInt(max.Substring(7,3)) + 1 \'获得最大编号的后三位顺序号,并加1
            Else
                idx = 1 \'否则顺序号等于1
            End If
            e.DataRow("编号") = bh & "-" & Format(idx,"000")
        End If
    End
If

End
If


现在问题是,若表是外部表,初始不加载,都是从后台提取数据,代码怎改?


--  作者:有点甜
--  发布时间:2014/8/19 17:57:00
--  

max = e.DataTable.Compute("Max(编号)","日期 >= #" & fd & "# And 日期 <= #" & ld & "# And [_Identify] <> " & e.DataRow("_Identify")) \'取得该月的最大编号

 

改成

 

max = e.DataTable.SqlCompute("Max(编号)","日期 >= #" & fd & "# And 日期 <= #" & ld & "# And [_Identify] <> " & e.DataRow("_Identify")) \'取得该月的最大编号


--  作者:有点甜
--  发布时间:2014/8/19 17:58:00
--  

 如果是sqlserver数据库,要这样改

 

max = e.DataTable.SqlCompute("Max(编号)","日期 >= \'" & fd & "\' And 日期 <= \'" & ld & "\' And [_Identify] <> " & e.DataRow("_Identify")) \'取得该月的最大编号

[此贴子已经被作者于2014-8-19 17:57:56编辑过]

--  作者:jk362223
--  发布时间:2014/8/20 9:26:00
--  
idx = 1 \'否则顺序号等于1
提示是错误代码
            

--  作者:有点甜
--  发布时间:2014/8/20 9:28:00
--  

 呃,不会有错。报什么错?

 

 贴出你完整代码。


--  作者:jk362223
--  发布时间:2014/8/20 9:28:00
--  
提示
图片点击可在新窗口打开查看此主题相关图片如下:额天.png
图片点击可在新窗口打开查看

--  作者:有点甜
--  发布时间:2014/8/20 9:30:00
--  
 如果你按照上面的去做,不会报这个错。贴出你的代码。
--  作者:jk362223
--  发布时间:2014/8/20 9:31:00
--  
If e.DataCol.Name = "编辑时间" Then
    If e.DataRow.IsNull("编辑时间") Then
        e.DataRow("病历号") = Nothing
    Else
        Dim d As Date = e.DataRow("编辑时间")
        Dim y As Integer = d.Year
        Dim m As Integer = d.Month
        Dim Days As Integer = Date.DaysInMonth(y,m)
        Dim fd As Date = New Date(y,m,1) \'获得该月的第一天
        Dim ld As Date = New Date(y,m,Days) \'获得该月的最后一天
        Dim bh As String = Format(d,"yyyyMM") \'生成编号的前6位,4位年,2位月.
        If e.DataRow("病历号").StartsWith(bh) = False \'如果编号的前6位不符
            Dim max As String
            Dim idx As Integer
            max = e.DataTable.SqlCompute("Max(病历号)","编辑时间 >= \'" & fd & "\' And 编辑时间 <= \'" & ld & "\' And [_Identify] <> " & e.DataRow("_Identify")) \'取得该月的最大编号            If max > "" Then \'如果存在最大编号
                idx = CInt(max.Substring(7,3)) + 1 \'获得最大编号的后三位顺序号,并加1
            Else
                idx = 1 \'否则顺序号等于1
            End If
            e.DataRow("病历号") = bh & "-" & Format(idx,"000")
        End If
    End If
End If


--  作者:有点甜
--  发布时间:2014/8/20 9:33:00
--  
If e.DataCol.Name = "编辑时间" Then
    If e.DataRow.IsNull("编辑时间") Then
        e.DataRow("病历号") = Nothing
    Else
        Dim d As Date = e.DataRow("编辑时间")
        Dim y As Integer = d.Year
        Dim m As Integer = d.Month
        Dim Days As Integer = Date.DaysInMonth(y,m)
        Dim fd As Date = New Date(y,m,1) \'获得该月的第一天
        Dim ld As Date = New Date(y,m,Days) \'获得该月的最后一天
        Dim bh As String = Format(d,"yyyyMM") \'生成编号的前6位,4位年,2位月.
        If e.DataRow("病历号").StartsWith(bh) = False \'如果编号的前6位不符
            Dim max As String
            Dim idx As Integer
            max = e.DataTable.SqlCompute("Max(病历号)","编辑时间 >= \'" & fd & "\' And 编辑时间 <= \'" & ld & "\' And [_Identify] <> " & e.DataRow("_Identify")) \'取得该月的最大编号
            If max > "" Then \'如果存在最大编号
                idx = CInt(max.Substring(7,3)) + 1 \'获得最大编号的后三位顺序号,并加1
            Else
                idx = 1 \'否则顺序号等于1
            End If
            e.DataRow("病历号") = bh & "-" & Format(idx,"000")
        End If
    End If
End If