ImLost
Registered User.
- Local time
- Yesterday, 18:56
- Joined
- Nov 16, 2005
- Messages
- 44
Hello -
I have two combo boxes on a form, with the second set to pull up different lists depending on what is entered in the first box. To set this up, in Access 2003, I used one table to set up the Agencies with an ID# and then used another table to use that unique ID to indicate specific events, each with its own ID #. Then through a few queries and some VBA on the after update option on the first box (see below), it was working just fine. In theory...
Private Sub Type_AfterUpdate()
Me.Outcome = Null
Me.Outcome.Requery
End Sub
In practice, the second box will only allow me to select the first option. I can see that there are other options and click on them or type them in, but when I tab to the next field, it defaults back to the first option.
Please help if you can. You guys have been invaluable over the past few years and I only have 6 days left at this job to get this thing working.
There's a good chance it will follow me to my new job, but it's important to get a few of these smaller bugs fixed before I go. Thanks for any input you can offer.
I have two combo boxes on a form, with the second set to pull up different lists depending on what is entered in the first box. To set this up, in Access 2003, I used one table to set up the Agencies with an ID# and then used another table to use that unique ID to indicate specific events, each with its own ID #. Then through a few queries and some VBA on the after update option on the first box (see below), it was working just fine. In theory...
Private Sub Type_AfterUpdate()
Me.Outcome = Null
Me.Outcome.Requery
End Sub
In practice, the second box will only allow me to select the first option. I can see that there are other options and click on them or type them in, but when I tab to the next field, it defaults back to the first option.
Please help if you can. You guys have been invaluable over the past few years and I only have 6 days left at this job to get this thing working.

Last edited: