|
-
Feb 1st, 2007, 05:34 PM
#1
Thread Starter
Hyperactive Member
[RESOLVED] listbox
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
If your question is answered then mark your thread RESOLVED and give credit to whoever answered it.
If you fail, try and try again, its the only way to success.
-
Feb 1st, 2007, 05:39 PM
#2
Hyperactive Member
Re: listbox
what are you wanting to do with the data from the list box? will help give a better answer
If a post has been usefull then Rate it! 
-
Feb 1st, 2007, 05:41 PM
#3
Thread Starter
Hyperactive Member
Re: listbox
when i select a user from the list box i want the user to show in a caption
If your question is answered then mark your thread RESOLVED and give credit to whoever answered it.
If you fail, try and try again, its the only way to success.
-
Feb 1st, 2007, 05:43 PM
#4
Re: listbox
VB Code:
Private Sub lstUsers_Click()
lblSelUser.Caption = lstUsers.List(lstUsers.ListIndex)
End Sub
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|