I want to start an external program out of my QT-Programm. The only working solution was:
system(\"start explorer.exe\");
But it is only wo
If you want your program to wait while the process is executing, you can use
QProcess::execute(file);
instead of
QProcess process; process.start(file);