In my GUI GUI application, I invoke the command line via:
system("lots.exe & of.exe && commands.exe");
It opens the command line (as I want), but freezes the Qt GUI application until the command line is closed. Is there any way to prevent this? I saw that there is a QProcess class, but I can not get it to call the command line.
Any help would be greatly appreciated!
source
share