Link to home
Start Free TrialLog in
Avatar of New_Alex
New_AlexFlag for Cyprus

asked on

VBA , How do I grey out a Checkbox and a Combobox to limit User's Input

Private Sub CheckBox1_Click()

End Sub

Private Sub CheckBox2_Click()

End Sub

Private Sub CheckBox3_Click()

End Sub

Private Sub ComboBox1_AfterUpdate()

End Sub

Open in new window


I have 3 CheckBoxes and One ComboBox .

I would like when I click on CheckBox1 to GreyOut Checkbox3 and ComboBox1
When I click on CheckBox2 to Remove all of the above Greyed limitations.
ASKER CERTIFIED SOLUTION
Avatar of Cong Minh Vo
Cong Minh Vo
Flag of Viet Nam image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of New_Alex

ASKER

Thank you guys