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 gkittelson 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
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 picture. If I start the web browser of the computer everyhthing works fine. Here is the code{code} queryAddress.Append("
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())

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

Auguy
Sylvania/Toledo Ohio
 
Oops, link the image is in the other post.

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

Part and Inventory Search

Sponsor

Back
Top