Form -> Subform with list

T

TMM

I have a form with a bounded Text Box (country).
I have a sub_form with an unbounded list (city)...

Every works well but navigation.

How can I update the list into the subform every time I click a button in
the in the Navigation Buttons Bar (fist record, previus record, next record,
last record)???

Thnks for your help!
 
B

Beetle

Sounds like you need to requery your listbox. In the On_Current event of your
main form put;

Me!NameOfYourSubform!NameOfYourListbox.Requery

HTH
 
Top