combo box question

  • Thread starter khhome06 via AccessMonster.com
  • 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.
 
G

Guest

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top