Default value in combo box = value of another combo box?

G

Geordie

How do I get the value of one combo box to be the default
value in another combo box? in this instance, I want the
value of cboAsgEngID to be the default value for
cboSteEngID.

I have tried putting the following into Default Value of
cboSteEngID without success:
[me].[cboAsgEngID].[Value]
and
=[cboAsgEngID]

BTW, the two combos are on different tab control pages.

Thanks.
 
A

Al

Because they are on different pages, my guess would be
that you need to reference the page name instead of
using "me". i.e [PageName].[cboAsgEngID].[Value]

At least that's what I would try... Good luck.
 

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