I am using a binding navigator and when I click save my information appears to save but when I close and reopen the program the new info is not saved. What am I doing wrong? Is it my update method? Do I need to add anything else? I'm using VS2005
this.Validate();
this.trainingBindingSource.EndEdit();
this.membersBindingSource.EndEdit();
this.membersTableAdapter.Update(this.trainingDataSet.Members);
this.trainingTableAdapter.Update(this.trainingDataSet.Training);
trainingDataSet.AcceptChanges();
trainingDataSet.Dispose();
I'm losing my mind with this one :(