Rss & SiteMap

Foxtable(狐表) http://www.foxtable.com

新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!
共15 条记录, 每页显示 10 条, 页签: [1] [2]
[浏览完整版]

标题:请教内部函数编号代码

1楼
13315253800 发表于:2024/9/7 12:30:00
请教内部函数自动编号代码,flt处有问题,敬请老师帮助修改一下
'按日期类别自动编号
Dim e = args(0)'定义参数,Args(0)
Dim 类别 As String = args(1) 'Args(1)
Dim 编号 As String = args(2) 
Dim 代码 As String = args(3) 
Select e.DataCol.Name 
    Case 日期, 类别
        If e.DataRow.IsNull(日期) OrElse 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 = e.DataRow(类别) & "-" & Format(d, "yyyyMM") & "-" '生成编号的前缀
            If e.DataRow(编号).StartsWith(bh) = False Then'如果编号前缀不符
                Dim max As String
                Dim idx As Integer
                Dim flt As String
                flt = 类别 & " = '" & e.DataRow("类别") & "' And 日期 & " >= #" & fd & "# And " & 日期 & " <= #" & ld & "# And [_Identify] <> " & e.DataRow("_Identify")
                max = e.DataTable.Compute("Max(编号)", flt) '取得该月的相同分类的最大编号
                If max > "" Then '如果存在最大编号
                    idx = CInt(max.Substring(12, 4)) + 1 '获得最大编号的后四位顺序号,并加1
                Else
                    idx = 1 '否则顺序号等于1
                End If
                e.DataRow(编号) = bh & Format(idx, "0000")
            End If
        End If 
End Select
2楼
有点蓝 发表于:2024/9/8 11:37:00
有什么问题?提示什么错误?
3楼
13315253800 发表于:2024/9/9 8:23:00
flt = 类别 & " = '" & e.DataRow("类别") & "' And 日期 & >= #" & fd & "# And " & 日期 & " <= #" & ld & "# And [_Identify] <> " & e.DataRow("_Identify")

.NET Framework 版本:4.0.30319.36543
Foxtable 版本:2022.8.18.1
错误所在事件:自定义函数,按日期类别编号
详细错误信息:
Exception has been thrown by the target of an invocation.
Syntax error: Missing operand before '>=' operator.

4楼
有点蓝 发表于:2024/9/9 8:59:00
flt = 类别 & " = '" & e.DataRow("类别") & "' And 日期 >= #" & fd & "# And  日期 " <= #" & ld & "# And [_Identify] <> " & e.DataRow("_Identify")
5楼
13315253800 发表于:2024/9/9 9:13:00
图片点击可在新窗口打开查看
6楼
13315253800 发表于:2024/9/9 9:29:00
改为
flt = 类别 & " = '" & e.DataRow("类别") & "' And 日期 >= #" & fd & "# And 日期 <= #" & ld & "# And [_Identify] <> " & e.DataRow("_Identify")
第一行出现编号,第二行又出现错误提示
.NET Framework 版本:4.0.30319.36543
Foxtable 版本:2022.8.18.1
错误所在事件:自定义函数,按日期类别编号
详细错误信息:
Exception has been thrown by the target of an invocation.
Index and length must refer to a location within the string.
Parameter name: length

7楼
cd_tdh 发表于:2024/9/9 9:31:00
后面日期后面多了一个“
flt = 类别 & " = '" & e.DataRow("类别") & "' And 日期 >= #" & fd & "# And  日期  <= #" & ld & "# And [_Identify] <> " & e.DataRow("_Identify")

或是试试
flt = 类别 & " = '" & e.DataRow("类别") & "' And 日期 >= #" & fd & "# And  日期  <= #" & ld & "# And [_Identify] <> '" & e.DataRow("_Identify") & "'"
[此贴子已经被作者于2024/9/9 9:40:27编辑过]
8楼
13315253800 发表于:2024/9/9 9:41:00
日期后面去掉任何一个“,都无法保存
9楼
13315253800 发表于:2024/9/9 9:56:00
修改了一下,编号不增加,请蓝老师指导一下
 下载信息  [文件大小:   下载次数: ]
图片点击可在新窗口打开查看点击浏览该文件:管理项目1.foxdb

10楼
有点蓝 发表于:2024/9/9 9:58:00
贴出完整代码看看
共15 条记录, 每页显示 10 条, 页签: [1] [2]

Copyright © 2000 - 2018 foxtable.com Tel: 4000-810-820 粤ICP备11091905号

Powered By Dvbbs Version 8.3.0
Processed in .02734 s, 3 queries.