以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  集合  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=132715)

--  作者:zaq3574020
--  发布时间:2019/3/28 11:13:00
--  集合

Dim sj As List(Of DataRow)
Dim jh As List(Of DataRow)

sj要怎么得到jh集合的所有数据。


--  作者:有点甜
--  发布时间:2019/3/28 11:50:00
--  

这个意思?

 

Dim sj As List(Of DataRow)
Dim jh As List(Of DataRow)

sj.AddRange(jh)


--  作者:zaq3574020
--  发布时间:2019/3/28 17:15:00
--  
会提示错误,具体内容好像是未引用设置实例
--  作者:有点甜
--  发布时间:2019/3/28 18:41:00
--  
Dim sj As List(Of DataRow) = DataTables("表A").Select("")
Dim jh As List(Of DataRow) = DataTables("表B").Select("")
msgbox(sj.count)
sj.AddRange(jh)
msgbox(sj.count)