Foxtable(狐表)用户栏目专家坐堂 → loadfilte 几个条件同时加载出错


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

主题:loadfilte 几个条件同时加载出错

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


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2014/3/29 13:05:00 [显示全部帖子]

 改一下

 


Dim Filter As String = "1=1"

With e.Form.Controls("门店编号")
    If .Value IsNot Nothing Then
        Filter = " and 归属门店代号 = '" & .Value & "'"
    End If
End With

With e.Form.Controls("回访人")
    If .Value IsNot Nothing Then
        Filter+ = " and 回访人 = '" & .Value & "'"
    End If
End With

With e.Form.Controls("销售主管")
    If .Value IsNot Nothing Then
        Filter+ = " and 销售主管 = '" & .Value & "'  "
    End If
End With

If Filter > "" Then
    DataTables("rjsytVIP回访记录").LoadFilter = Filter
MessageBox.Show(Filter)

    DataTables("rjsytVIP回访记录").Load
End If


 回到顶部