Very simple MS Access problem - please help

Associate
Joined
4 Mar 2009
Posts
36
Hi,

I have a MS Access form with a number of check boxes. I want the following scenario.

When checkbox 1 is selected I want Checkboxes 2 and 3 to be greyed out so they cant be selected.
Any help appreciated!

Thanks
 
I currently have the following -

Private Sub Box1()
If Me.Box1 = True Then
Me.Box2 = False


End If

End Sub

Which will remove the tick from the box, but I want the box disabled so it cant be selected.
 
Back
Top Bottom