Foxtable(狐表)用户栏目专家坐堂 → [求助]数值框筛选问题


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

主题:[求助]数值框筛选问题

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


加好友 发短信
等级:六尾狐 帖子:1249 积分:9474 威望:0 精华:0 注册:2013/5/12 9:22:00
  发帖心情 Post By:2017/3/15 21:38:00 [显示全部帖子]

Dim v As WinForm.NumericComboBox = e.Form.Controls("NumericComboBox1")
With Tables("表A")
    Dim dr As DataRow = .DataTable.Find("[A列] = " & v.Value)
    If dr IsNot Nothing Then
        .Filter = "[A列] = " & v.Value
    Else
        MessageBox.Show("没有满足条件的数据!")
    End If
End With

 回到顶部
帅哥哟,离线,有人找我吗?
wyz20130512
  2楼 | QQ | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:六尾狐 帖子:1249 积分:9474 威望:0 精华:0 注册:2013/5/12 9:22:00
  发帖心情 Post By:2017/3/15 22:31:00 [显示全部帖子]

数值输入框的ValueChanged事件代码:

Dim v As WinForm.NumericComboBox = e.Sender
With Tables("表A")
    Dim dr As DataRow = .DataTable.Find("[A列] = " & v.Value)
    If dr IsNot Nothing Then
        .Filter = "[A列] = " & v.Value
    Else
        MessageBox.Show("没有满足条件的数据!")
    End If
End With

 回到顶部