Set position in list box

M

Malc Payne

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?
 
O

Ofer Cohen

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