I am building an application for a football club with a database and I have this problem:
When I run this, and either add, delete or edit the data, then save and close the form and go back into the application, the data was not saved.
Does anyone know how to fix this?
Thanks!
Code:
private void finansijeBindingNavigatorSaveItem_Click(object sender, EventArgs e)
{
this.Validate();
this.finansijeBindingSource.EndEdit();
this.tableAdapterManager.UpdateAll(this.fudbalski_klubDataSet1);
}
Does anyone know how to fix this?
Thanks!
Comment