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 cmdOpenWebsite_Click()
On Error GoTo cmdOpenWebsite_Click_Err
Dim strAddress As String
If IsNull(Me.txtWebsite) Then
MsgBox "No Website address data is present", vbOKOnly, "Missing Data"
Else:
strAddress = "[URL unfurl="true"]http://"[/URL] & Me.txtWebsite
Application.FollowHyperlink strAddress, , True
End If
cmdOpenWebsite_Click_Exit:
Exit Sub
cmdOpenWebsite_Click_Err:
MsgBox Err.Description, vbCritical, _
"Error Opening Website"
Resume cmdOpenWebsite_Click_Exit
End Sub