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)
 
Back
Top