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 basNoLeadZero(strIn As String) As String
Dim Idx As Integer
If (Len(strIn) = 0) Then
basNoLeadZero = strIn
Exit Function
End If
Idx = 1
Do While Idx <= Len(strIn)
If (Mid(strIn, Idx, 1) <> "0") Then
Exit Do
End If
Idx = Idx + 1
Loop
basNoLeadZero = Right(strIn, Len(strIn) - Idx + 1)
End Function
TheLen = Len(TheString)
Do While (TheLen > 0)
If (Asc(TheString) = 48) Then
TheLen = TheLen - 1
TheString = Right(TheString, TheLen)
Else
TheLen = 0
End If
Loop