R Ranjit kurian May 7, 2008 #1 I have three forms, i need my combo box to show all the three forms name, and when i select the name it should open the form...
I have three forms, i need my combo box to show all the three forms name, and when i select the name it should open the form...
F fredg May 7, 2008 #2 I have three forms, i need my combo box to show all the three forms name, and when i select the name it should open the form... Click to expand... Just these same 3 forms? Never any others to be added later? Set the Combo Box Rowsource Type property to Value List. Set the Combo Box Rowsource property to "Form1","Form2","Form3" Code the Combo Box AfterUpdate event: DoCmd.OpenForm Me.[ComboName]
I have three forms, i need my combo box to show all the three forms name, and when i select the name it should open the form... Click to expand... Just these same 3 forms? Never any others to be added later? Set the Combo Box Rowsource Type property to Value List. Set the Combo Box Rowsource property to "Form1","Form2","Form3" Code the Combo Box AfterUpdate event: DoCmd.OpenForm Me.[ComboName]