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.
Dim intRemainder As Integer
If Not IsNull(Me!txtMyText) Then
intRemainder = Me!txtMyText Mod 6
If intRemainder <> 0 Then
MsgBox "Invalid data. Value must be a multiple of 6."
DoCmd.CancelEvent
SendKeys "{ESC}"
End If
End If