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 Command2_Click()
Dim MyString As String, NewString As String
Dim i As Integer, MyPos As Integer
MyString = T1
For i = 1 To Len(MyString)
If Not IsNumeric(Mid(MyString, i, 1)) Then
MyPos = i
Exit For
End If
Next i
NewString = Mid(MyString, i)
T2 = NewString
End Sub