Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub MychkBox_AfterUpdate()
Select Case Me.MychkBox.Value
Case -1
Me.TextBox.Value = "True"
Case 0
Me.TextBox.Value = "False"
End Select
End Sub
Private Sub MychkBox_AfterUpdate()
If Me.MychkBox.Value = True Then
Me.TextBox.Value = "True"
Else
Me.TextBox.Value = "False"
End If
End Sub