以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  光标停在某行某列  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=86685)

--  作者:czy66ds
--  发布时间:2016/6/23 11:37:00
--  光标停在某行某列
假如r为row,如果希望光标停在r行的姓名列该如何写代码?
--  作者:大红袍
--  发布时间:2016/6/23 11:38:00
--  

Dim t as Table = Tables("表A")

t.Select(r.Index, t.Cols("姓名").index)


--  作者:恒隆君
--  发布时间:2017/9/6 14:55:00
--  
With Tables("表名称")
    .Select(.RowSel, .Cols("待停留列").Index)
End With