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.
If Len(Me![blue]MyField[/blue] & "") > 80 Then
MsgBox "Too much text! Truncating to 80 characters..."
Me![blue]MyField[/blue] = Left(Me![blue]MyField[/blue], 80)
End If
[blue] If Len(Me![purple][b][i]TextboxName[/i][/b][/purple].Text) = 8 Then
If (KeyCode > 47 And KeyCode < 58) Or _
(KeyCode > 64 And KeyCode < 91) Or _
(KeyCode > 185 And KeyCode < 193) Or _
(KeyCode > 218 And KeyCode < 220) Then
KeyCode = 0
End If
End If[/blue]