How would I get a C++ program to open a web page in IE or even better in the default browser?
to open a web page
Started by moonrise, May 11 2006 01:28 AM
3 replies to this topic
#1
Posted 11 May 2006 - 01:28 AM
|
|
|
#2
Posted 12 May 2006 - 12:50 AM
C++ in VS 6.0, VS .NET, Borland or what?
#3
Posted 16 May 2006 - 02:30 AM
Visual Studio
Managed C++
System::Diagnostics::Process::Start("http://url.com");
C#
System.Diagnostics.Process.Start("http://url.com/");
Managed C++
System::Diagnostics::Process::Start("http://url.com");
C#
System.Diagnostics.Process.Start("http://url.com/");
#4
Posted 21 February 2007 - 08:56 AM
how about in Dev-C++


Sign In
Create Account


Back to top









