以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 定位函数 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=6550) |
-- 作者:lihe60 -- 发布时间:2010/4/8 15:50:00 -- 定位函数 能不能增加一个定位函数,即只用一行代码即可替代 With CurrentTable Dim r As Integer r = .Find("abc", .RowSel + 1, 0, False, False, True) If r > - 1 Then \'如果找到符合条件的行 .Position = r \'则选择该行 End If End With 这组代码。 |
-- 作者:狐狸爸爸 -- 发布时间:2010/4/8 16:55:00 -- position = 位置 |