uggg i finally figured it out..
DataSet1.GetChanges();
TableAdapter.Fill(DataSet1.table);
thanks for pointing me in the right direction :)
"M K" <sk********************@yahoo.comwrote in message
news:%J*****************@newsread3.news.pas.earthl ink.net...
>I found the .Clear() method but not the .Fill() method on the dataset.
I have the following:
Dataset
BindingSource
TableAdapter
"Marc Gravell" <ma**********@gmail.comwrote in message
news:11**********************@o61g2000hsh.googlegr oups.com...
>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