Foxtable(狐表)用户栏目专家坐堂 → [求助]引用


  共有68人关注过本帖树形打印复制链接

主题:[求助]引用

帅哥哟,离线,有人找我吗?
苏州老街
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:三尾狐 帖子:722 积分:4612 威望:0 精华:0 注册:2016/10/19 16:45:00
[求助]引用  发帖心情 Post By:2025/1/3 21:36:00 [显示全部帖子]

老师,下面代码总是重复引用。我把他放在项目事件中的 AfterOpenProject



Dim cmd5 As New SQLCommand          
Dim dt As DataTable
cmd5.Co  nnecti
Dim t5 As Table = Tables("进销存")
Dim filter = iif(t5.filter > "", t5.filter, "1=1")
cmd5.CommandText = "SEL ECT DISTINCT year(日期) as 年, 来源,客户ID,客户名称 from {进销存} where " & filter
dt = cmd5.ExecuteReader()
For Each dr As DataRow In dt.datarows
    filter = "年份 = '" & dr("年") & "' and 来源 = '" & dr("来源") & "' and 客户名称 = '" & dr("客户名称") & "'"
    Dim ndr As DataRow = DataTables("年度统计").find(filter)
    If ndr Is Nothing Then
        ndr = DataTables("年度统计").addnew
    End If
    ndr("年份") = dr("年")
    ndr("来源") = dr("来源")
    ndr("客户名称") = dr("客户名称")
Next

 回到顶部
帅哥哟,离线,有人找我吗?
苏州老街
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:三尾狐 帖子:722 积分:4612 威望:0 精华:0 注册:2016/10/19 16:45:00
  发帖心情 Post By:2025/1/4 11:55:00 [显示全部帖子]

老师,打开项目就会重复复制被引用的字段。

图片点击可在新窗口打开查看此主题相关图片如下:重复复制.jpg
图片点击可在新窗口打开查看

 回到顶部
帅哥哟,离线,有人找我吗?
苏州老街
  3楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:三尾狐 帖子:722 积分:4612 威望:0 精华:0 注册:2016/10/19 16:45:00
  发帖心情 Post By:2025/1/4 16:26:00 [显示全部帖子]

老师,是来源值是空引起的。下面代码修改不好。

Dim cmd5 As New SQLCommand          '年度统计
Dim dt As DataTable
cmd5.C   
Dim t5 As Table = Tables("进销存")
Dim filter = iif(t5.filter > "", t5.filter, "1=1")
cmd5.CommandText = "SEL  CT DISTINCT year(日期) as 年, 来源,客户ID,客户名称 from {进销存} where " & filter
dt = cmd5.ExecuteReader()
For Each dr As DataRow In dt.datarows
    filter = "年份 = '" & dr("年") & "' and 来源 = '" & dr("来源") & "' and 客户名称 = '" & dr("客户名称") & "'"
    Dim ndr As DataRow = DataTables("年度统计").find(filter)
    If ndr Is Nothing Then
        ndr = DataTables("年度统计").addnew
    End If
    ndr("年份") = dr("年")
    ndr("来源") = dr("来源")
    ndr("客户名称") = dr("客户名称")
Next




Dim Filter As String
    If dr.isnull("年")=False Then
        Filter = "年份 = '" & dr("年") & "'"
    End If

    If dr.isnull("来源")=False Then
        If Filter > "" Then
            Filter = Filter & " And "
        End If
        Filter = Filter & "来源 = '" & dr("年") & "'"
    End If

 回到顶部