combo box question

  • Thread starter Thread starter khhome06 via AccessMonster.com
  • Start date Start date
K

khhome06 via AccessMonster.com

Can anyone help?

I have created 5 table and 5 form ( employee, customer, sale, supplier and
equipment ).

It's possible to create a combo box shortcut to navigate between forms. The
items for the combo box will be this five form, and once user click on it, it
will bring up the repective form.

Thank in advance.
 
Yes, it is possible. You will probably want a two column combo list. One
column will be the description the use will see and understand and the other
will be the name of the form. Assuming the form name column will be the bound
form, use the after update event of the combo to open the selected form:

DoCmd.OpenForm Me.MyCombo
 
Back
Top