Foxtable(狐表)用户栏目专家坐堂 → [求助]含有窗口文本框中字符2个以上的行筛选出来


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

主题:[求助]含有窗口文本框中字符2个以上的行筛选出来

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


加好友 发短信 一级勋章
等级:超级版主 帖子:7258 积分:40773 威望:0 精华:16 注册:2008/8/31 23:23:00
  发帖心情 Post By:2024/8/28 8:19:00 [显示全部帖子]

Dim s, s1, Filter As String
s = Forms("窗口1").Controls("textbox1").Value
For Each dr As DataRow In DataTables("表A").DataRows
    s1 = dr("第一列")
    If s1.Length - s1.Replace(s, "").Length > s.Length * 2 - 1 Then
        If Filter.Contains(s1) = False Then
            Filter = Filter & "|" & s1
        End If
    End If
Next
Filter = Filter.Trim("|")
Filter = "第一列 = '" & Filter.Replace("|", "' and 第一列 = '") & "'"
Tables("表A").Filter = Filter

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


加好友 发短信 一级勋章
等级:超级版主 帖子:7258 积分:40773 威望:0 精华:16 注册:2008/8/31 23:23:00
  发帖心情 Post By:2024/8/28 8:22:00 [显示全部帖子]

Tables("表A").Filter = ""
Dim s, s1, Filter As String
s = Forms("窗口1").Controls("textbox1").Value
For Each dr As DataRow In DataTables("表A").DataRows
    s1 = dr("第一列")
    If s1.Length - s1.Replace(s, "").Length > s.Length * 2 - 1 Then
        If Filter.Contains(s1) = False Then
            Filter = Filter & "|" & s1
        End If
    End If
Next
Filter = Filter.Trim("|")
Filter = "第一列 = '" & Filter.Replace("|", "' and 第一列 = '") & "'"
Tables("表A").Filter = Filter

 回到顶部
帅哥哟,离线,有人找我吗?
程兴刚
  3楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信 一级勋章
等级:超级版主 帖子:7258 积分:40773 威望:0 精华:16 注册:2008/8/31 23:23:00
  发帖心情 Post By:2024/8/28 8:57:00 [显示全部帖子]

.Value改为.text即可,我的的码考虑了a可以为一个连续的字符串,因为没有看您的文件,控件、表、字段名称自己修改,估计报错的原因是您修改后currenttable的问题,也就currenttable不存在!

 回到顶部