vb.net datagridview 正在删除 link 到数据集
vb.net datagridview removing link to dataset
我将数据从 XML 加载到数据集,然后使用该数据集填充我的数据网格视图。通过这样做,我的 DGV 被绑定到数据集。现在我收到以下错误:'RowCount property cannot be set on a data-bound DataGridView control.'
有没有办法再次制作我的 DGV "unbound" 来防止这些错误?还是有另一种方法来解决这个问题?
感谢 jmcilhinney 的帮助,这是我最终使用的解决方案
Do While i < Dataset.Tables("table1").Rows.Count
If i = DGV.RowCount Then
DGV.Rows.Add()
End If
c = 0
Do While c < Dataset.Tables("table1").Columns.Count
DGV.Rows(i).Cells(c).Value = Dataset.Tables("table1").Rows(i).Item(c)
c = c + 1
Loop
i = i + 1
Loop
我将数据从 XML 加载到数据集,然后使用该数据集填充我的数据网格视图。通过这样做,我的 DGV 被绑定到数据集。现在我收到以下错误:'RowCount property cannot be set on a data-bound DataGridView control.'
有没有办法再次制作我的 DGV "unbound" 来防止这些错误?还是有另一种方法来解决这个问题?
感谢 jmcilhinney 的帮助,这是我最终使用的解决方案
Do While i < Dataset.Tables("table1").Rows.Count
If i = DGV.RowCount Then
DGV.Rows.Add()
End If
c = 0
Do While c < Dataset.Tables("table1").Columns.Count
DGV.Rows(i).Cells(c).Value = Dataset.Tables("table1").Rows(i).Item(c)
c = c + 1
Loop
i = i + 1
Loop