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 lblURL_Click()
Dim lngRtn As Long
On Error GoTo ErrTrap
lngRtn = Shell("rundll32.exe url.dll,FileProtocolHandler [URL unfurl="true"]http://"[/URL] & lblURL.Caption)
GoTo ExitSub
ErrTrap:
'General handler
MsgBox "Error " & Format$(Err.Number, "#0") & " - message: " & _
Err.Description & "." & vbCrLf & "Raised by object: " & Err.Source & ".", _
vbCritical + vbOKOnly, "System Error"
Resume ExitSub
ExitSub:
End Sub