Randy , Thanks for the post!
I combined the 2 pieces of code ok, but decided to use the MS WebBrowser activeX module instead.
Do you know how I can add my variables ...?
-----------------------------------------
Private Sub txtMap_Click()
Dim strPrefix As String, strAddress As String, strCityPrefix, strStatePrefix As String, strCity As String, strState As String, strZipPrefix As String, strZip As String, strSuffix As String
strPrefix = "
strAddress = Me!ADD1
strCityPrefix = "&city="
strCity = Me!CITY1
strStatePrefix = "&state="
strState = Me!STATE1
strZipPrefix = "&zipcode="
strZip = Me!ZIP1
strSuffix = ""
Application.FollowHyperlink strPrefix & strAddress & strCityPrefix & strCity & strStatePrefix & strState & strZipPrefix & strZip & strSuffix, , True
End Sub
------------------------------
To this command listed below..?
-------------------------------
Me.WebBrowser1.navigate "
This command by itself works great! It perfectly opens up the Web browser on my Form, with scoll bars if needed.
I just want to add my variables.
Thanks again,
jlig