When i edit details of a field using a datagridview connected to an Access database it does not save the changes to the database, it temporarily updates the datagridview, but when i re-execute the program it runs the old application therefore also does not update the datagridview...total chaos..
I am sure I am doing the update part right but it does not work.. I have tried everything possible.. but havent got anywhere!!
Here is a sample of my update code
private void exampleNavigatorSaveItem_Click(object sender, EventArgs e)
{
this.Validate();
this.exampleBindingSource.EndEdit();
exampleTableAdapter.Update(exampleDataSet.TableName);
}
Hope someone can help
Thanks in advance!!