If I have a checkbox (chk230) on a form, that if checked will populate a textbox (Text100), would the code be something like this:
Thanks.
Code:
Private Sub AfterUpdate chk230 ()
If Me.chk230 = 0 Then
Text100 = "Yes"
ElsIf Me.chx230 = 1 Then
Text100 = "No"
End If
End Sub
Thanks.