Combo Box

  • Thread starter Thread starter Ranjit kurian
  • Start date Start date
R

Ranjit kurian

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...

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]
 
Back
Top