以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 排序 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=127687) |
-- 作者:nxdx112 -- 发布时间:2018/11/20 9:54:00 -- 排序 Dim t As Table = Tables("报名表汇总") t.Select(0,0,t.rows.count-1,t.cols.count-1) 此代码是选中所有行列,如何修改至选中列--姓名 这一列的所有行
|
-- 作者:有点甜 -- 发布时间:2018/11/20 9:59:00 -- Dim t As Table = Tables("报名表汇总") Dim c As Integer = t.Cols("姓名").Index t.Select(0,c,t.rows.count-1,c) |