Greetings.
I have a ComboBox and a CheckBox on my form.
The ComboBox gets its values from a table called Colors.
I want the CheckBox's Visible property to turn False when the ComboBox has a certain value.
This is the code I used:
Combo75 is my ComboBox; Stripe is my CheckBox. (Excuse my bad VB basics please
)
Any ideas?
Thanks ahead!
I have a ComboBox and a CheckBox on my form.
The ComboBox gets its values from a table called Colors.
I want the CheckBox's Visible property to turn False when the ComboBox has a certain value.
This is the code I used:
Code:
Private Sub Product_AfterUpdate()
If Combo75.Value = "W/Blue" Then Stripe.Visible = False
End If
End Sub
Combo75 is my ComboBox; Stripe is my CheckBox. (Excuse my bad VB basics please

Any ideas?
Thanks ahead!