Rss & SiteMap

Foxtable(狐表) http://www.foxtable.com

新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!
共6 条记录, 每页显示 10 条, 页签: [1]
[浏览完整版]

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

1楼
185723664 发表于:2024/8/28 0:20:00
求助 含有窗口文本框中字符2个以上的行筛选出来

图片点击可在新窗口打开查看此主题相关图片如下:2录入a筛选出第3、5、6绿色这3行.jpg
图片点击可在新窗口打开查看
 下载信息  [文件大小:   下载次数: ]
图片点击可在新窗口打开查看点击浏览该文件:含有窗口文本框中字符2个以上的行筛选出来.foxdb


2楼
程兴刚 发表于: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
3楼
程兴刚 发表于: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
4楼
185723664 发表于:2024/8/28 8:32:00
感谢程总,这么早哈
程总,上面代码执行没效果,报错,有空,辛苦帮忙再看看

.NET Framework 版本:4.0.30319.42000
Foxtable 版本:2022.8.18.1
错误所在事件:窗口,窗口1,Button3,Click
详细错误信息:
未将对象引用设置到对象的实例。


还有一点要求就是想不是固定表A第一列,想动态表当前列都能实现这个搜索功能
        Dim t As Table = currenttable
        Dim tb As String = t.cols(t.colsel).name

[此贴子已经被作者于2024/8/28 8:34:05编辑过]
5楼
有点蓝 发表于:2024/8/28 8:46:00
Dim s, s1, Filter As String
s = Forms("窗口1").Controls("combobox1").text
For Each dr As DataRow In DataTables("表A").DataRows
    s1 = dr("第一列")
    If s1.Length - s1.Replace(s, "").Length >= 2 Then
        Filter = Filter & "," & dr("_identify") 
    End If
Next
Filter = Filter.Trim(",")
Filter = "_identify in (" & Filter & ")"
Output.Show(filter)
Tables("表A").Filter = Filter
6楼
程兴刚 发表于:2024/8/28 8:57:00
.Value改为.text即可,我的的码考虑了a可以为一个连续的字符串,因为没有看您的文件,控件、表、字段名称自己修改,估计报错的原因是您修改后currenttable的问题,也就currenttable不存在!
共6 条记录, 每页显示 10 条, 页签: [1]

Copyright © 2000 - 2018 foxtable.com Tel: 4000-810-820 粤ICP备11091905号

Powered By Dvbbs Version 8.3.0
Processed in .02344 s, 3 queries.