jammin140900
Registered User.
- Local time
- Today, 16:37
- Joined
- Aug 18, 2008
- Messages
- 35
Hi all,
I'm new to all of this and this is probably straight forward. I have a form in a MS Access database which is basically to be used like a checklist for a set of business processes in processing an application form that is received by the business. (The database is used to record the information from the application form and monitor stages to the application process.)
The 'checklist' is also used as a trigger point. That is, when certain items are flagged as complete, the 'status' changes automatically to let the user know that stage is complete.
I have tried putting a line of code under the "On Change" event of a combo box...
If Me.AppStatusID = 0 Then
Me.AppStatusID = 1
and that works fine for the first record. When I add a new record (next line item) using the combo box, the AppStatusID always goes back and changes the first record entry and not the current applicable record line. Could you please help? Presumably something needs to tell it to use the current record line?
Thank you
I'm new to all of this and this is probably straight forward. I have a form in a MS Access database which is basically to be used like a checklist for a set of business processes in processing an application form that is received by the business. (The database is used to record the information from the application form and monitor stages to the application process.)
The 'checklist' is also used as a trigger point. That is, when certain items are flagged as complete, the 'status' changes automatically to let the user know that stage is complete.
I have tried putting a line of code under the "On Change" event of a combo box...
If Me.AppStatusID = 0 Then
Me.AppStatusID = 1
and that works fine for the first record. When I add a new record (next line item) using the combo box, the AppStatusID always goes back and changes the first record entry and not the current applicable record line. Could you please help? Presumably something needs to tell it to use the current record line?
Thank you