-3
我有一個DataTable,裏面有多個列,我想用VisualBasic中的每一行數據導入一些DataGridView。 你能幫我嗎?在Visual Basic中導入DataTable的特定列
我有一個DataTable,裏面有多個列,我想用VisualBasic中的每一行數據導入一些DataGridView。 你能幫我嗎?在Visual Basic中導入DataTable的特定列
你的問題是非常非常通用的。在這兩種情況下,這都是一個樣本。
'Create a new datatable
Dim table2 As New DataTable
table2.Columns.Add("Name")
'loop through your existing datatable - add the records to the columns you want
For Each dr As DataRow In Table1.Rows
Dim R As DataRow = dt.NewRow
R("Name") = dr("TABLE1_COLUMNNAME")
dt.Rows.Add(R)
Next
'turn the new datatable into the datagridview.
DataGridView1.DataSource = table2