|
-
Aug 30th, 2002, 09:31 AM
#1
Thread Starter
Member
******RESOLVED******combobox
How can I detect the row number that a user has chosen with a combobox?
Thanks!
Last edited by iwantaplaystati; Aug 30th, 2002 at 09:57 AM.
-
Aug 30th, 2002, 09:34 AM
#2
Addicted Member
Code:
Private Sub Combo1_Click()
MsgBox Combo1.ListIndex
End Sub
-
Aug 30th, 2002, 09:36 AM
#3
May have to add 1 to that though. Because that returns the ListIndex which I assume is Zero based...meaning the first row will be 0, the second will be 1, etc...
-
Aug 30th, 2002, 09:38 AM
#4
Addicted Member
Use its ListIndex property.
Pete
Edit: Why am i so slow at this??
-
Aug 30th, 2002, 09:55 AM
#5
Thread Starter
Member
thanks guys!
All is working not
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
|