I\'m using 2005 Windows Forms in C#. I\'ve only been working at this for a day, so go easy please.
I\'d like to have a submit button that saves changes to a DataGridVie
Sam,
the update needs a table so you could try something like:
TableType table = (TableType) stagingGrid.DataSource;
myStagingTableAdapter.Update(table);
where you'll have to substitute TableType with something appropriate.
But a better approach would be to use drag-and-drop and learn form the code.
The form will now have a instance of the dataset and that is your reference point for Adapter.Fill and .Update methods.