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 txtBxCloseOnValue_AfterUpdate()
If Me.txtBxCloseOnValue = "Close" Then
MsgBox "You entered 'Close'. About to Close", vbinfo, "CLOSING"
DoCmd.Close acForm, Me.Name
End If
End Sub