RE: Need VB help(Visual Basic)
I can't remember exactly, and don't have VB on the computer i'm currently using, but isn't it something like:
SelectedIndex contains the index of the current selected item - this will be an integer starting from zero.
To get the text of the selected item can't you use this?
Dim MyItem as String
MyItem = List1.Items(List1.SelectedIndex)
|