I am trying to use Google Maps in a Windows Form project (visual C#).
The form has a button and when the user clicks the bellow code is executed!
queryAddress.Append("http://maps.google.com/maps?z=12&t=m&q=loc:36.948827+26.982906");
webBrowser1.Navigate(queryAddress.ToString());
Normaly the browser that is embedded in the webBrowser control should have opened the map, but all I am seeing is the message for the unsupported browser!
I found a solution here, but either way I cannot understand it. Is there a way to define which web browser will be used by the webBrowser control?
If also anybody is boring to death and want to explain me that solution it would be greatly appreciated!