Do you need to use AcceptChanges after a TableAdapter.Update I know it's an option for DataAdapters, but I'm guessing it's automatically called during a TableAdapter.Update. Is that true
Also, I believe that calling AcceptChanges before a TableAdapter.Update will lose you your ability to apply the changes to the underlying data source, right
If both these assumptions are correct (don't call AcceptChanges before Update and that update calls AcceptChanges on its own), then an application managing its data resources via TableAdapters and BindingSources should never have an occasion to call AcceptChanges, no

Order of using AcceptChanges and TableAdapter.Update
Mario Esposito
Thanks. That's terrific! So I was mostly right, except that I have to use AcceptChanges after GetChanges.
The only remaining question is that the documentation mentions that when using a DataAdapter, the call to AcceptChanges is a user option. Is that correct
Timski72