Foxtable(狐表)用户栏目专家坐堂 → 多条件查询


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

主题:多条件查询

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


加好友 发短信
等级:超级版主 帖子:110629 积分:563047 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2018/4/7 9:42:00 [显示全部帖子]

Dim tbl As Table = Tables("窗口6_Table1")
Dim Filter   As   String
 With e.Form.Controls("TextBox1")
       If .Value   IsNot   Nothing  Then
           If Filter  > ""   Then
             Filter = Filter &   " And "
           End   If
         Filter  =   "年度 = '" & .Value &   "'"
       End   If
 End   With
 With e.Form.Controls("TextBox2")
       If .Value   IsNot   Nothing   Then
           If Filter  > ""   Then
             Filter  = Filter &   " And "
           End   If
         Filter = Filter &   "月份 = '" & .Value &   "'"
       End   If
 End   With
……

If   Filter >   "" Then
    tbl.Filter =   Filter
     Tables("制造质量管理").Filter =   Filter
 End If
[此贴子已经被作者于2018/4/7 9:43:43编辑过]

 回到顶部