Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VB.Net 2008 Using Google Maps

Status
Not open for further replies.

Auguy

Programmer
May 1, 2004
1,206
0
36
US
When I use Google maps with a WebBrowser inside of a Windows form the map displays but I get the error in the attached image. If I start the web browser of the computer everything works fine. I had it working with FireFox at one time but I must have changed a setting in FireFox. Am I doing something wrong here? Here is the code
Code:
      queryAddress.Append("[URL unfurl="true"]http://maps.google.com/maps?q=")[/URL]

StreetSum = (txtStreetNbr.Text.Trim + " " + txtStreetName.Text.Trim).Trim

' build street part of query string
If StreetSum.Trim <> String.Empty Then
  street = StreetSum.Replace(" ", "+")
  queryAddress.Append(street + "," & "+")
 End If

' build city part of query string
If txtCity.Text.Trim <> String.Empty Then
  city = txtCity.Text.Trim.Replace(" ", "+")
  queryAddress.Append(city + "," & "+")
End If

' build state part of query string
If txtStateCode.Text.Trim <> String.Empty Then
  state = txtStateCode.Text.Trim.Replace(" ", "+")
  queryAddress.Append(state + "," & "+")
End If

' build zip code part of query string
If txtZip.Text.Trim <> String.Empty Then
  zip = txtZip.Text.Trim
  queryAddress.Append(zip)
End If

' pass the url with the query string to web browser control
WebBrowser1.Navigate(queryAddress.ToString())

' OR 

' Direct call to Computer's Web Browser
System.Diagnostics.Process.Start(queryAddress.ToString())

Auguy
Sylvania/Toledo Ohio
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top