以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  Dim b1 As New SQLgroupTableBuilder 赋值  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=129853)

--  作者:fubblyc
--  发布时间:2019/1/7 17:55:00
--  Dim b1 As New SQLgroupTableBuilder 赋值

图片点击可在新窗口打开查看此主题相关图片如下:微信截图_20190107174126.png
图片点击可在新窗口打开查看

甜老师:
    Dim b1 As New SQLgroupTableBuilder
    If dr("运营表格式") = "1" Then
        Dim b1 As New SQLgroupTableBuilder("统计表1","POS刷卡明细整合2")   这句要怎么写呢,不能再dim b1 了,而是 b1 = XXX这样。。。
    Else
        Dim b1 As New SQLgroupTableBuilder("统计表1","POS刷卡明细整合")
    End If
    
    Dim dt1 As fxDataSource
    b1.C

--  作者:有点甜
--  发布时间:2019/1/7 17:56:00
--  
Dim b1 As SQLgroupTableBuilder
If dr("运营表格式") = "1" Then
    b1 = New SQLgroupTableBuilder("统计表1","POS刷卡明细整合2")   这句要怎么写呢,不能再dim b1 了,而是 b1 = XXX这样...
Else
    b1 = New SQLgroupTableBuilder("统计表1","POS刷卡明细整合")
End If

--  作者:fubblyc
--  发布时间:2019/1/9 10:16:00
--  
谢谢甜老师!!