-
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 !
-
Put your things into Combo1_Click.
-
Thank you MerryVIP, I could've sworn I tried that one. Works a treat!