Hi
Got a webBrowser control on a form displaying ads from a server, trying to load page in the default browser when user clicks on a banner within webBrowser control, by default the control always load pages within IE Browser which is not really what one wants.
This is about as far as I can get to load into default browser, the problem is its loads the banner into new page within default browser not the actual site from clicking the banner:( then you have to click that banner to navigate to site.
private: System::Void webBrowser1_NewWindow(System::Object^ sender, System::ComponentModel::CancelEventArgs^ e) {
System::Diagnostics::Process::Start(webBrowser1->Url->ToString());
e->Cancel = true;
}
Any one have any ideas how to do this, any help would be greatly appreciated. Yer just a point I am aware I am using webBrowser1->Url which would load banner but don't know what else to use.