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 TextBox1_Change()
With TextBox1
If InStr(1, .Text, Chr(32), vbTextCompare) <> 0 Then
MsgBox "No spaces allowed.", vbOKOnly + vbExclamation, "Input Error"
.Text = Left(.Text, Len(.Text) - 1)
End If
End With
End Sub