start a process using QProcess
Posted
by kaycee
on Stack Overflow
See other posts from Stack Overflow
or by kaycee
Published on 2010-04-12T14:39:49Z
Indexed on
2010/04/12
14:43 UTC
Read the original article
Hit count: 394
i'm trying to start Microsoft word using QProcess as following:
QString program = "WINWORD.EXE";
process->start(program);
but nothing happens... winword.exe is on path (so when i type winword.exe word is openning up) is it the right way to do so ?
© Stack Overflow or respective owner