|
-
Jul 11th, 2000, 09:09 AM
#1
Thread Starter
New Member
Any help as to how to use the selected item in one comobox and use the item to do something else, like pass the item into a sql question and display the result into the second combobox?
-
Jul 11th, 2000, 09:19 AM
#2
This will get the current item from the ComobBox.
Code:
MyString = Combo1.Text
-
Jul 11th, 2000, 09:26 AM
#3
Thread Starter
New Member
Is it the same as the item I have selected in the combobox? This is because I don't seem to get what I have selected?
-
Jul 11th, 2000, 01:37 PM
#4
You select the item.
Code:
Private Sub Combo1_Click()
Msgbox "Item selected: " & Combo1.text & ""
End Sub
It should be as Megatron told you. As soon as you click the item, it goes into the Combo textbox and tells you what item is selected from there.
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
|