Syncronizing combo boxes

  • Thread starter Thread starter iridium
  • Start date Start date
I

iridium

Is there a way to automatically query and select the first data on the
second combo box when I make a change in the first one?
 
Wayne thanks for the help. Synchronizing the combo boxes is not a
problem. What I want to do is after sync. the combo box I want the
first value on the combo box to be visible. Currently I have to select
that one? Any ideas?
 
Hi,

You can do this....
lets say combo 2 is dependent upon combo 1
In combo 1 properties, add the code to the afterupdate
Me.combo2 = Me.combo2.ItemData(0)
 

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

Back
Top