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.
Function RemoveLeadingChars(pstrText As String, _
pstrChar As String) As String
Dim intI As Integer
intI = 1
Do Until Mid(pstrText, intI, 1) <> pstrChar
intI = intI + 1
Loop
RemoveLeadingChars = Mid(pstrText, intI)
End Function