以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  如何遍历选中的行  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=34398)

--  作者:haoting2000
--  发布时间:2013/6/6 23:12:00
--  如何遍历选中的行

一个窗体1里,有个TABLE,绑定了表。

我在表里用鼠标选中了10行,再点击一个按钮,则对这选中的10行进行操作。 不适用复选框的情况下,是不是可以遍历呢?

 


--  作者:fjlclxj
--  发布时间:2013/6/6 23:44:00
--  
Dim rs As new List(of Row)
With Tables("表A")
    For i As Integer = .TopPosition To .BottomPosition
       rs.Add(.Rows(i))
    Next
End With
For Each r As Row In rs
    Output.Show(r("第一列"))
Next r

--  作者:狐狸爸爸
--  发布时间:2013/6/7 8:43:00
--  
With Tables("表A")
    For i As Integer = .TopPosition To .BottomPosition
       .Rows(i)("某列") = “某值”
    Next
End With

--  作者:傻马难骑
--  发布时间:2013/6/7 9:55:00
--  
学习了图片点击可在新窗口打开查看