Foxtable(狐表)用户栏目专家坐堂 → 同步数据问题


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

主题:同步数据问题

帅哥哟,离线,有人找我吗?
大红袍
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:贵宾 帖子:39310 积分:196782 威望:0 精华:1 注册:2015/4/25 9:23:00
  发帖心情 Post By:2015/7/14 16:59:00 [显示全部帖子]

 看示例二

 

http://www.foxtable.com/help/topics/0665.htm

 

 参考代码

 

If LastInputTickCount Mod 30000 = 0  Then
    Dim str As String = ""
    For Each dt As DataTable In DataTables
        Dim count As Integer = dt.DataRows.Count
        dt.Load
        If dt.DataRows.Count > count Then
            str &= dt.Name & vbcrlf
        End If
    Next
    msgbox(str)
End If


 回到顶部