我知道这是一个已经被回答了一千次的基本问题,但我无法让它发挥作用。
我在 Visual Studio 2010 中工作,并且在我的 Windows 应用程序中有两个表单。在第一个(Main.vb)中,用户输入他的输入并进行计算。在第二个(DataAnalysis.vb)中显示计算结果。
在 Main.vb 中,我创建了包含所有中间计算步骤的临时表:
Dim tableTempJDL As DataTable = New DataTable("TempJDL")
Dim column As DataColumn
column = New DataColumn("ID", GetType(System.Int32))
tableTempJDL.Columns.Add(column)
column = New DataColumn("PthObjekt", GetType(System.Double))
tableTempJDL.Columns.Add(column)
'further columns are after created using the same method
然后,在 DataAnalysis.vb 中,我尝试将 DataTable 显示tableTempJDL
到DataGridViewBerechnung
:
Public bindingSourceBerechnung As New BindingSource()
Me.DataGridViewBerechnung.DataSource = Me.bindingSourceBerechnung
但是后来我不明白如何填充 DataGridView ...