|
-
Nov 20th, 2000, 05:27 AM
#1
Thread Starter
Evil Genius
ARRRGGGHHHH. This one is driving me nuts. I have 1 combobox, & 1 textbox on a form with the following code :
Code:
Private Sub Form_Load()
Combo1.AddItem "1"
Combo1.AddItem "2"
End Sub
Private Sub Combo1_Change()
If Combo1.text = "1" Then
Text1.Text = "some information here"
End If
End Sub
I think I have looed at every property of this, but I need the textbox to display some text if a certain option (in this case 1) is selected within the combobox. ANY ideas will be helpful here as I am at my wits end!!!
Thank you everyone !
-
Nov 20th, 2000, 05:31 AM
#2
Put your things into Combo1_Click.
-
Nov 20th, 2000, 06:05 AM
#3
Thread Starter
Evil Genius
Thank you MerryVIP, I could've sworn I tried that one. Works a treat!
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
|