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.
Application.FollowHyperlink "[URL unfurl="true"]http://www.mywebsite.com"[/URL]
Dim Street As String ' full or part address like 1600 Pennsylvania Ave NW, Washington, DC?
Dim mev1 As String
mev1 = "C:\Program Files\internet explorer\iexplore " & "[URL unfurl="true"]http://maps.google.com/maps?saddr="[/URL] & Street
Call Shell(mev1, vbMaximizedFocus)
Dim mev1 As String
Dim mfrom As String
Dim mto As String
mfrom = "saddr= <Address>" ' from Address (full or part address like 1600 Pennsylvania Ave NW, Washington, DC?)
mto = "daddr= <Address> " ' to address
mev1 = "C:\Program Files\internet explorer\iexplore " & "[URL unfurl="true"]http://maps.google.com/maps?"[/URL] & mfrom & "&" & mto
Call Shell(mev1, vbMaximizedFocus)