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

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..
 
T

Tom

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..
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top