tags:

views:

132

answers:

1

when i am running the following code:

listbox1.requery

which query is this going to run? where can i edit this query?

+2  A: 

That causes the RowSource property in the ListBox to be re-queried.

Thomas G. Mayfield
Shouldn't that be RowSource property?
HansUp
Right you are. Fixed.
Thomas G. Mayfield
Strictly speaking, you're requerying the recordset returned by the listbox's rowsource, not the rowsource itself, which is just a string value.
David-W-Fenton