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.
Do Until InStr(1, strTempString, """") = 0
If InStr(1, strTempString, """") = 1 Then
strTempString = Right(strTempString, Len(strTempString) - 1)
Else
lQuotePos = InStr(1, strTempString, """")
strTempString = Mid(strTempString, 1, lQuotePos - 1) & _
Mid(strTempString, lQuotePos + 1, Len(strTempString) - lQuotePos)
End If
Loop
[\code]