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.
Public Function IsAlpha(strW as string) as boolean
IsAlpha = True
For I = 1 To Len(strW)
If Not (Mid(strW,I,1) Like "[a-zA-Z]") then
IsAlpha = false
exit for
end if
Next
End Function
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