以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]自动生成编号 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=56986) |
-- 作者:winlikong -- 发布时间:2014/9/16 14:15:00 -- [求助]自动生成编号 请查看附件: 我需要把201406到201409的日期的自动生成编号 : 是否直接把http://www.foxtable.com/help/index.html?n=2403.htm这个教程上的一些字改一下就可以? 请指教 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 <!--EndFragment--> |
-- 作者:有点甜 -- 发布时间:2014/9/16 14:17:00 -- 可以的,你这段代码遇到什么问题?报错还是怎样? |
-- 作者:Bin -- 发布时间:2014/9/16 14:19:00 -- 是报错,还是不起作用? 报错的话错误提示发出来,请说明具体的问题,才可以有具体的答复哦. 有例子文件发上来就更好了.
|
-- 作者:winlikong -- 发布时间:2014/9/16 14:19: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.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 |
-- 作者:winlikong -- 发布时间:2014/9/16 14:20:00 -- 起不到作用。没有出现编号 |
-- 作者:有点甜 -- 发布时间:2014/9/16 14:21:00 -- 这段代码的意思,是你输入了 日期 以后,就会自动生成编号了。 |