JohnYingling
Programmer
Code:
Sub Textbox1_KeyPress (keyascii as integer)
If KeyAscii = 8 then exit function ' Backspace
If Not(Chr(KeyAscii) Like "[a-zA-Z]") Then keyascii = 0
End Sub
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.
Sub Textbox1_KeyPress (keyascii as integer)
If KeyAscii = 8 then exit function ' Backspace
If Not(Chr(KeyAscii) Like "[a-zA-Z]") Then keyascii = 0
End Sub