Opening URL to the web browser from a .NET C++ application

  • Thread starter Thread starter Jmarc99
  • Start date Start date
J

Jmarc99

Hi there,

I want my C++ application send a URL to open in Explorer.

What might be the "simple code line" I can write in the method
called when I press a button in my dialog based application?

As you can see, I wish to go up to opening the web browser
when clicking a simple bolded text www_mysiteTOopen_net like this.

Don't bother with the MFC and C++ part of my dialog based application.
I just with to know how to send the url to the web browser from
this application.

Thanks..
 
System::Diagnostics::Process::Start("http://url_text");


-- Tom




Hi there,

I want my C++ application send a URL to open in Explorer.

What might be the "simple code line" I can write in the method
called when I press a button in my dialog based application?

As you can see, I wish to go up to opening the web browser
when clicking a simple bolded text www_mysiteTOopen_net like this.

Don't bother with the MFC and C++ part of my dialog based application.
I just with to know how to send the url to the web browser from
this application.

Thanks..
 
Back
Top