A a14929 Registered User. Local time Today, 12:54 Joined Apr 9, 2000 Messages 11 Apr 16, 2000 #1 Please help... I have two check boxes on a form. I want the second one to be disabled if the first one is NOT ticked. Is there an If...Then statement or something that can be used to achieve this?
Please help... I have two check boxes on a form. I want the second one to be disabled if the first one is NOT ticked. Is there an If...Then statement or something that can be used to achieve this?
T tracey75 Registered User. Local time Today, 12:54 Joined Feb 18, 2000 Messages 50 Apr 17, 2000 #2 cant you use radio buttons instead? Wouldnt that work better for you.
B Bruce Morrison Guest Apr 18, 2000 #3 Put this statement in the OnCurrent event for the form and in the OnChange event for the first check box: Me![CBox2Name].Enabled = Me![CBox1Name] HTH. Bruce Morrison
Put this statement in the OnCurrent event for the form and in the OnChange event for the first check box: Me![CBox2Name].Enabled = Me![CBox1Name] HTH. Bruce Morrison