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 [i]YourTextBox[/i]_KeyPress(KeyAscii As Integer)
Const strcKeepers As String = "()*-0123456789"
If InStr(1, strcKeepers, Chr(KeyAscii)) = 0 Then
Beep
KeyAscii = 0
End If
End Sub