I'm having troubles binding my DataGrid with my DataSet.
I pull the DataSet down from a webservice, so there is no SQLAdapter or similar involved.
I am trying to do:
dataGrid1.DataSource = mMaintenanceDS;
But this doesn't appear to fill the datagrid, and most likely because I am only setting the Datasource, but not actually binding the source.
Any help would be greatly appreciated, this one is just getting past me and I need to use a datagrid. Perhaps I can set a datatable to the dataset, and bind the grid with the table?
Cheers
Start Free Trial