Re query a combo box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I use a the same query for a form as well as a combo box on the form. I can
re-query the form however the combo box doesnt seem to get the re-quered
query. There out of sync. Does this seem correct. Do I somehow have to
re-query for the combo box? Is there a way to do that?
 
Try this
Me.ComboBoxName.Requery

If its in a subform
Me.[SubFormName].Form.[ComboNme].Requery
 
Worked fine, Thank you
--
Thanks for any assistance


Ofer said:
Try this
Me.ComboBoxName.Requery

If its in a subform
Me.[SubFormName].Form.[ComboNme].Requery

--
I hope that helped
Good luck


NNlogistics said:
I use a the same query for a form as well as a combo box on the form. I can
re-query the form however the combo box doesnt seem to get the re-quered
query. There out of sync. Does this seem correct. Do I somehow have to
re-query for the combo box? Is there a way to do that?
 
Back
Top