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.
' Hyperlink for the map @ MapQuest
Application.FollowHyperlink
"[URL unfurl="true"]http://www.mapquest.com/maps/map.adp?country=US&countryid=250&addtohistory=&address="[/URL]
& Mod_Street & city = Mod_City & State = Mod_State & zipcode ="&submit=Get+Map"
Dim Mod_Street As String
Dim Mod_City As String
Dim Mod_State As String
'Populate variable from your form
Mod_Street = frmYours.Address
Mod_City = frmYours.City
Mod_State = frmYours.State
' Rmv any preceeding and/or trailing spaces
Mod_Street = RTrim(Mod_Street)
Mod_City = RTrim(Mod_City)
Mod_State = RTrim(Mod_State)
Mod_Street = LTrim(Mod_Street)
Mod_City = LTrim(Mod_City)
Mod_State = LTrim(Mod_State)
' Replace remaining spaces with a + in each string
Mod_Street = Replace(Mod_Street, " ", "+", 1, , 1)
Mod_City = Replace(Mod_City, " ", "+", 1, , 1)
Mod_State = Replace(Mod_State, " ", "+", 1, , 1)
' Hyperlink for the map @ MapQuest
Application.FollowHyperlink
"[URL unfurl="true"]http://www.mapquest.com/maps/map.adp?country=US&countryid=250&addtohistory=&address="[/URL]
& Mod_Street & city = Mod_City & State = Mod_State & zipcode ="&submit=Get+Map"