Check Box Problems

a14929

Registered User.
Local time
Today, 12:54
Joined
Apr 9, 2000
Messages
11
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?
 
cant you use radio buttons instead? Wouldnt that work better for you.
 
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
 

Users who are viewing this thread

Back
Top Bottom