Jump to content

to open a web page

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
3 replies to this topic

#1
moonrise

moonrise

    Learning Programmer

  • Members
  • PipPipPip
  • 40 posts
How would I get a C++ program to open a web page in IE or even better in the default browser?

#2
Lop

Lop

    Speaks fluent binary

  • Members
  • PipPipPipPipPipPipPipPip
  • 1,172 posts
C++ in VS 6.0, VS .NET, Borland or what?

#3
Crane

Crane

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 398 posts
Visual Studio

Managed C++
System::Diagnostics::Process::Start("http://url.com");

C#
System.Diagnostics.Process.Start("http://url.com/");

#4
Deathcry

Deathcry

    Learning Programmer

  • Members
  • PipPipPip
  • 68 posts
how about in Dev-C++