I found the .Clear() method but not the .Fill() method on the dataset.
I have the following:
Dataset
BindingSource
TableAdapter
> datagridview.Refresh() redraws the grid-view from the data source
> (presumably a DataSet in your case); it doesn't reload the DataSet
> from the database. You may have to Clear() and Fill() the DataTable
> (or DataSet).
>
> Marc
M K - 11 Jul 2007 14:22 GMT
uggg i finally figured it out..
DataSet1.GetChanges();
TableAdapter.Fill(DataSet1.table);
thanks for pointing me in the right direction :)
>I found the .Clear() method but not the .Fill() method on the dataset.
>
[quoted text clipped - 9 lines]
>>
>> Marc