qdef

  • Thread starter Thread starter Steven Waugh
  • Start date Start date
S

Steven Waugh

I have a query definition "qselStaticInformation". I also
have a form that contains several combo boxes, where the
row sources are taken from "qselStaticInformation".

How do I get the form to requery "qselStaticInformation"
after a selection has been made in any one of the combo
boxes???
 
Hi,


You can respecify each rowsource by themselves, if I understand your
question correctly. Note that, in general, you can wait until the combo box
got the focus, since otherwise, it is just a waste of time, since the list
is not visible anyhow...


Me.ComboBoxName.RowSource=Me.ComboBoxName.RowSource



Hoping it may help,
Vanderghast, Access MVP
 
Back
Top