Foxtable(狐表)用户栏目专家坐堂 → 请问哪里有错?


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

主题:请问哪里有错?

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


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


With e.Form.Controls("TextBox1")
If .value IsNot Nothing Then
     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
With e.Form.Controls("TextBox3")
    If .Value IsNot Nothing Then
        If Filter >"" Then
            Filter = Filter & " And "
        End If
        Filter = Filter & "余额 = '" & .Value & "'"
    End If
End With
With e.Form.Controls("TextBox4")
    If .Value IsNot Nothing Then
        If Filter > "" Then
            Filter = Filter & " And "
        End If
        Filter = Filter  & "说明  like '%" & .Value & "%'"
    End If
End With
With e.Form.Controls("TextBox5")
    If .Value IsNot Nothing Then
        If Filter > "" Then
            Filter = Filter & " And "
        End If
        Filter = Filter & "经手人 Like  '%" & .Value & "%'"
    End If
End With


If Filter > "" Then
    Tables("收付款帐户_Table1").Filter = Filter
End If


 回到顶部