ListBox

  • Thread starter Thread starter Brent
  • Start date Start date
B

Brent

I have a list box that pulls up site numbers from a table. Is there a way
to set the value of the list box to the first property in the listbox?

thanks
Brent
 
In your Form_Load event, you could use: List0 = List0.ItemData(0)
This should select the first record in the list.
 
Back
Top