我想调用我的第二个表的 DataTable:
第一张表:
Dim table As New DataTable
' columns in the DataTable.
table.Columns.Add("Monday", System.Type.GetType("System.Int32"))
table.Columns.Add("Tuesday", System.Type.GetType("System.Int32"))
table.Columns.Add("Wednesday", System.Type.GetType("System.Int32"))
table.Columns.Add("Thursday", System.Type.GetType("System.Int32"))
table.Columns.Add("Friday", System.Type.GetType("System.Int32"))
' rows with those columns filled in the DataTable.
table.Rows.Add(1, 2005, 2000, 4000, 34)
table.Rows.Add(2, 3024, 2343, 2342, 12)
table.Rows.Add(3, 2320, 9890, 1278, 2)
现在这是我需要循环的第二张表:
** 未完成,想在第一行从 table 到 table2 加 1。**
Dim table2 As New DataTable
' columns in the DataTable.
table2.Columns.Add("one", System.Type.GetType("System.String"))
table2.Columns.Add("two", System.Type.GetType("System.String"))
table2.Rows.Add() *** add 1 (from monday) from first table**** ??
table2.Rows.Add()
table2.Rows.Add()
table2.Rows.Add()
使用 table2,我如何链接星期一的信息,在表 2 中添加一个,我需要一个循环来调用它。
在第一个表中,我希望星期一的 1 显示在第二个表 table2 中的“一个”中。
对于亚历克斯:
Monday Tuesday Wed
10 40 9
20 50 6
30 70 4