Set position in list box

G

Guest

I have a list box on a form from which the operator can select a record.
however, when the form is refreshed the list box is left in the position that
is was last left. I want to always see the top items in the list box, how can
I force this to happen?
 
G

Guest

To move back to the top of the list box you can use
Me.[ListBoxName].Selected(0) = true
Me.[ListBoxName] = Null
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top