ListBox

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
 
A

antonette

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