View Full Version : Check Box Problems


a14929
04-16-2000, 07:27 AM
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?

tracey75
04-17-2000, 12:48 PM
cant you use radio buttons instead? Wouldnt that work better for you.

Bruce Morrison
04-18-2000, 01:25 AM
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