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.
' In the procedure used:
strPassword = "KqaOrI6"
Call BuildPWD(strPassword)
. . .
' In BuildPWD procedure, add:
Private Sub BuildPWD(ByRef strPW as String)
strPW = strPW & Chr(34 + 27)
strPW = strPW & Chr(15 * 6)
' et cetera
End Sub