List Box

  • Thread starter Thread starter George
  • Start date Start date
G

George

I have a list box and I would like to have the first item
in the list highlighted - how can this be accomplished.

Thanks
 
Hi,
If you mean selected, then this will do it:

Me.yourListBox.Selected(0) = True

Subsitute the correct name of course.
 
Back
Top