以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 行定位选择find在窗口控件里如何实现? (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=1412) |
||||
-- 作者:菜鸟foxtable -- 发布时间:2008/12/16 22:27:00 -- 行定位选择find在窗口控件里如何实现?
Find 在指定列中查找指定的字符内容,如果找到,返回行的位置,否则返回-1。 语法:
在第一列查找“abc”,不区分大小写,不用完全匹配: With CurrentTable r = .Find("abc", 0, 0, False, False, True) If r > - 1 Then \'如果找到符合条件的行 .Select(r, .Colsel) \'则选择该行 End If End With [此贴子已经被作者于2008-12-16 22:49:21编辑过]
|
||||
-- 作者:czy -- 发布时间:2008/12/16 23:37:00 -- Dim r,s As String s = e.form.Controls("ComboBox1").value r = Tables("表A").Find( s , 0, 1, False, True, False) If r > - 1 Then Tables("表A").Select(r,1) End If |