I need to display the actual value of an item in
a ListBox. The item index is 1.
lblDisplay = List1.????
Thanks!
Printable View
I need to display the actual value of an item in
a ListBox. The item index is 1.
lblDisplay = List1.????
Thanks!
Try this:
lblDisplay = List1.List(1)
If you want to display the currently selected item, use:
lblDisplay = List1.List(List1.ListIndex)
hehehe... not as hard as ya thought huh!?
-deadBird