List Box Default Setting

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
On the form Load event you can write this code to highlight the first row

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

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

Back
Top