do i build a macro

tubar

Registered User.
Local time
Today, 13:48
Joined
Jul 13, 2006
Messages
190
when filling out a form if a user checks a certain box (true) and i want another check box then on the form to automatically select true...do i build a macro...and if so how
 
i think that is not necessary to build a macro for that, u can use a condition in the the other check box when u are editing your fomular.
sory for my englesh.
 
I would use an after_update event on the first Check Box:

Code:
Private Sub Check0_AfterUpdate()

If Me.Check0.Value = True Then

Me.Check2.Value = True

Else

Me.Check2.Value = False

End If

End Sub
 

Users who are viewing this thread

Back
Top Bottom