Vinz: How to append 2 datatables into single GridGroupingControl?

hi, Anyone help me on how to append more than 1 datatables into single GridGroupingControl? Can this be done or is it feasible? I would really appreciate if there is sample code as reference. thanks alot :) Best Regards Vincent

1 Reply

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

Loader.
Up arrow icon