Data entry error message

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In one of my data entry procedures I am getting "Update or CancelUpdate without AddNew or Edit" when I select a certain account twice in a row from a combo box drop down list of accounts. It's not really possible to explain the exact context in detail without a very long explanation, but can anyone give me any insight into what this error message means, when it might occur, and what can be done to avoid it? I need to get this fixed so I can roll out my app

Thanks
ctdak
 
check your code to see if it is missing the rst.AddNew or rst.Edit commands. you must use this before the update.
 
There is no recordset code involved here. This is a form open for the user to do data entry and everything is handled using the form's bound controls, combo boxes and record navigation bar. What could cause this error message considering there's no recordset code
ctda

----- Warren wrote: ----

check your code to see if it is missing the rst.AddNew or rst.Edit commands. you must use this before the update

--- Original message --

In one of my data entry procedures I am getting "Update or CancelUpdate without AddNew or Edit" when I select a certain account twice in a row from a combo box drop down list of accounts. It's not really possible to explain the exact context in detail without a very long explanation, but can anyone give me any insight into what this error message means, when it might occur, and what can be done to avoid it? I need to get this fixed so I can roll out my app

Thanks
ctda
 
Back
Top