Launch application

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Lafoopsie

    Launch application

    I want to launch an application from my C++ application.
    For example the java appletviewer with the command "appletview er test.html"
    How can I do this?

    Thx!


  • Rolf Magnus

    #2
    Re: Launch application

    Lafoopsie wrote:
    [color=blue]
    > I want to launch an application from my C++ application.
    > For example the java appletviewer with the command "appletview er
    > test.html" How can I do this?[/color]

    #include <cstdlib>

    int main()
    {
    std::system("ap pletviewer test.html");
    }

    Comment

    • Lafoopsie

      #3
      Re: Launch application

      Thx a lot!

      "Rolf Magnus" <ramagnus@t-online.de> schreef in bericht
      news:bm9a64$1rr $07$2@news.t-online.com...[color=blue]
      > Lafoopsie wrote:
      >[color=green]
      > > I want to launch an application from my C++ application.
      > > For example the java appletviewer with the command "appletview er
      > > test.html" How can I do this?[/color]
      >
      > #include <cstdlib>
      >
      > int main()
      > {
      > std::system("ap pletviewer test.html");
      > }
      >[/color]


      Comment

      Working...