AD
Administrator
Syncfusion Team
November 16, 2004 09:22 AM UTC
If the DataTables are in the same daatset. you can just display them by setting teh DataSource to the DataSet.
Dim ds As New DataSet("SomeDataSet")
ds.Tables.Add(dt) ''DataTable 1
ds.Tables.Add(dt1) ''DataTable 2
Me.gridGroupingControl1.DataSource = ds