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 Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 8 Then Exit Sub ' backspace key
temp = Chr(KeyAscii)
If temp < "0" Or temp > "9" Then KeyAscii = 0
temp = Text1
If Text1.SelLength > 0 Then
If Text1.SelText = temp Then
temp = Chr(KeyAscii)
Else
temp = Left(temp, Text1.SelStart) + Chr(KeyAscii) + _
Right(temp, Len(temp) - Text1.SelStart - Text1.SelLength)
End If
Else
n = Text1.SelStart
If n = 0 Then temp = Chr(KeyAscii) + temp
If n > 0 And n = Len(Text1) Then temp = temp + Chr(KeyAscii)
If n > 0 And n < Len(Text1) Then temp = Left(temp, n) + _
Chr(KeyAscii) + Right(temp, Len(Text1) - n)
End If
temp = Val(temp)
If temp > 50 Then KeyAscii = 0
End Sub