whats the code for when i select something from a list box
i tried:
VB Code:
lstUsers.Selected = lblSelUser.Caption
i cant fink of what it is
Printable View
whats the code for when i select something from a list box
i tried:
VB Code:
lstUsers.Selected = lblSelUser.Caption
i cant fink of what it is
what are you wanting to do with the data from the list box? will help give a better answer :)
when i select a user from the list box i want the user to show in a caption
VB Code:
Private Sub lstUsers_Click() lblSelUser.Caption = lstUsers.List(lstUsers.ListIndex) End Sub