以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 关于 for each (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=150928) |
-- 作者:ygg8310 -- 发布时间:2020/6/11 11:23:00 -- 关于 for each For Each r As DataRow In DataTables("表A").DataRows 如何获取r的行数?代码又该怎么写?
|
-- 作者:有点蓝 -- 发布时间:2020/6/11 11:24:00 -- For Each r As Row In Tables("表A").Rows msgbox(r.index)
|
-- 作者:ygg8310 -- 发布时间:2020/6/11 11:37:00 -- index 不是 datarow 的成员 是行数,遍历的行数
[此贴子已经被作者于2020/6/11 11:37:56编辑过]
|
-- 作者:有点蓝 -- 发布时间:2020/6/11 11:53:00 -- msgbox(DataTables("表A").DataRows.count) |