If the field is defined as a Yes/No field then when you add the field to the form, it will automatically be a checkbox (that's the default type for a Yes/No field).
J. Jones
jjones@cybrtyme.com
If you mean you want the check box to automatically check or uncheck based on a certain event...you can use an if, then statement something along these lines.
Private Sub Text2_AfterUpdate()
If Me.Text2 = "Peter" Then
Me.Check0 = True
Else:
Me.Check0 = False
End If
End Sub
HTH.
Peter Remember- It's nice to be important,
but it's important to be nice
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.