List Box Default Setting

G

George

On my form I have a few fields - LastName - FirstName - Social Security # and
a list box to pull up the records. When I first open the form it shows a
radom record, can I configure the List Box to open with the first item in the
list box High Lighted so it opens with that record ?

Thanks - George
 
O

Ofer Cohen

On the form Load event you can write this code to highlight the first row

Me.[LIstBoxName].Selected(0) = True
 
Top