Combo Box

jamesT

Registered User.
Local time
Today, 11:44
Joined
Mar 5, 2003
Messages
16
I have a combo box on a form which is linked to a table that stores all the names of the forms in the DB. How do i get a button to open the form based on what value is selected in the combo box

Thanks in advance for any help
 
On the AfterUpdate() event of your combobox, click the button with the three dots and select Code Builder.

Put this line:

DoCmd.OpenForm cboYourComboBoxHere, acNormal
 

Users who are viewing this thread

Back
Top Bottom