running an .exe

how can i run an executable with a c++ application

please help




Answer this question

running an .exe

  • Adam_W

    System::Diagnostics::Process *myprocess = new System::Diagnositcs::Process();

    myprocess->Start("test.exe");

    Hope that helps :)


  • running an .exe