Can this be done...?

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

I have a form with a combo textbox; within that combo box,
there are 11 options to chose from. . I want one of those
options, when selected, to automatically open another
form. What's the best way this can be done (if at all)?

Thank you very much for any help or advice that can be
given!
 
Of course, You can do by put your code to check the value of selected option
and open form corresponding form (DoCmd.OpenForm "Place Form Name Here").
All are done in the combo box's After_Update event .

HTH
 
Back
Top