Foxtable(狐表)用户栏目专家坐堂 → 模拟关联表的问题


  共有1584人关注过本帖平板打印复制链接

主题:模拟关联表的问题

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


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/5/20 16:43:00 [只看该作者]

回复1楼

 

Dim t As Table = Tables("窗口2_Table2")
With Tables("客户资料")
    If .Current Is Nothing Then
        t.Filter = "False"
    Else
        t.Filter = "编号 = '" & .Current("编号") & "'"
    End If
End With
t = Tables("窗口2_Table3")
With Tables("客户资料")
    If .Current Is Nothing Then
        t.Filter = "False"
    Else
        t.Filter = "编号 = '" & .Current("编号") & "'"
    End If
End With
t = Tables("窗口2_Table4")
With Tables("客户资料")
    If .Current Is Nothing Then
        t.Filter = "False"
    Else
        t.Filter = "编号 = '" & .Current("编号") & "'"
    End If
End With


 回到顶部