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
Select Chr(KeyAscii)
Case "0", "9"
Case else
keyascii = 0 ' Drop character
End select
End Sub
Sub Textbox1_KeyPress (keyascii as integer)
If KeyAscii = 8 then exit function ' Backspace
Select Chr(KeyAscii)
Case "0" to "9"
Case "."
if Instr(textbox.text,".") > 0 then
keyascii = 0 ' Drop character
End if
Case else
keyascii = 0 ' Drop character
End select
End Sub