G George Sep 9, 2004 #1 I have a list box and I would like to have the first item in the list highlighted - how can this be accomplished. Thanks
I have a list box and I would like to have the first item in the list highlighted - how can this be accomplished. Thanks
D Dan Artuso Sep 10, 2004 #2 Hi, If you mean selected, then this will do it: Me.yourListBox.Selected(0) = True Subsitute the correct name of course.
Hi, If you mean selected, then this will do it: Me.yourListBox.Selected(0) = True Subsitute the correct name of course.