A noobie question

Hi there,
I'm new to VC++ and I was wondering what the code might be to open another executable from my form. Something like notepad or solitare. Thanks



Answer this question

A noobie question

  • Martin Hellspong

    Have a look at the System::Diagnostics::Process::Start method:



    System::Diagnostics::Process::Start("notepad.exe");



  • Alistair Peterson

    *bows* tyvm


  • A noobie question