while user edits the datagridview, it does not save changes to Access MDB file ?
this is not working..
TableAdapter.Update(DataGridView1.DataSource)
while user edits the datagridview, it does not save changes to Access MDB file ?
this is not working..
TableAdapter.Update(DataGridView1.DataSource)
You'll need to update the data source explicitly.
The exact mechanism will depend on the data source attached to the view (via the .DataSource
property).
dataTable.AcceptChanges();
will update the in memory DataTable
object.