I have a visual basic 6 application that saved data in the wrong Access fields.
Ex. Table: Expenses
form field "personal" saved in Expenses.Business
form field "business" saved in Expenses.Personal
I need to create an executable to send to customers to correct this problem. I read that RecordSets and Cursors shouldn't be used (multi-user concerns). How can I do this? (ADODB)
I thought I would do the following but don't know how to code it.
-query table for records where personal or business are not blank
-save data into temporary variable
-update correct field
-loop thru the rest of the records
Thanks for the help.
Ex. Table: Expenses
form field "personal" saved in Expenses.Business
form field "business" saved in Expenses.Personal
I need to create an executable to send to customers to correct this problem. I read that RecordSets and Cursors shouldn't be used (multi-user concerns). How can I do this? (ADODB)
I thought I would do the following but don't know how to code it.
-query table for records where personal or business are not blank
-save data into temporary variable
-update correct field
-loop thru the rest of the records
Thanks for the help.