G
Guest
I am trying to update an Access 2000 database using this command for my "Update" button in my project:
daMembers.Update(DsMembers1, "Members")
But, I get this error message when I click on the Update button after making some changes in the DataGrid:
"An unhandled exception of type 'System.Data.OleDb.OleDbException' occurred in system.data.dll"
Taking advice from other programmers, I wrote this line of code to try to fix it:
Me.BindingContext(DsMembers1, "Members").EndCurrentEdit()
It hasn't worked. What should I do?
Regards,
Kenneth Clive
daMembers.Update(DsMembers1, "Members")
But, I get this error message when I click on the Update button after making some changes in the DataGrid:
"An unhandled exception of type 'System.Data.OleDb.OleDbException' occurred in system.data.dll"
Taking advice from other programmers, I wrote this line of code to try to fix it:
Me.BindingContext(DsMembers1, "Members").EndCurrentEdit()
It hasn't worked. What should I do?
Regards,
Kenneth Clive