以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]遍历按照_SortKey的顺序 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=34402) |
-- 作者:hiliuyong -- 发布时间:2013/6/7 1:18:00 -- [求助]遍历按照_SortKey的顺序 For Each dr As DataRow In DataTables("窗体细表").DataRows 这个遍历,我希望是按照_SortKey的顺序,有没有办法,或者变通的办法。 |
-- 作者:y2287958 -- 发布时间:2013/6/7 6:13:00 -- 用select |
-- 作者:狐狸爸爸 -- 发布时间:2013/6/7 8:39:00 -- For Each dr As DataRow In DataTables("窗体细表").Select("", "_SortKey") If dr("窗体名称") = "收货明细表" Then 。。。 End If Next |
-- 作者:hiliuyong -- 发布时间:2013/6/7 11:00:00 -- 谢谢狐爸 |