Checkbox help!

guo84

New member
Local time
Today, 15:19
Joined
Jan 26, 2005
Messages
7
:rolleyes: :rolleyes:

Hi to all

I got 2 checkbox.

checkbox A
checkbox B

When I check on checkbox A, checkBox B is also checked.
can this be done?

Please help and thanks a lot.
 
Check

In the After Update Event of CheckboxA put something like this:

If Me. Checkbox A = True Then
Me.CheckboxB = True
Else
Me.CheckboxB = False
End If
 

Users who are viewing this thread

Back
Top Bottom