Requery

H

H. Martins

If a form contains a listbox, when we do form.requery does it also
requeries the list box?

Thanks
Henry
 
S

Stuart McCall

H. Martins said:
If a form contains a listbox, when we do form.requery does it also
requeries the list box?

Thanks
Henry

No. You need to requery the listbox too:

Me.ListboxName.ReQuery
 
Top