Hi,guys,
I open a new .exe with QProcess.
I want get some result from the .exe,but find that the .exe be existed, the result can return.
Now,I want to get the real-time result of the .exe,that is,when I click the Apply button,the result can be return at the same time,but not at the time the .exe existed.
QString arguments;
arguments="my.exe ";
myprocess=new QProcess(this);
myprocess->start(arguments);
connect(myprocess, SIGNAL(readyReadStandardOutput()), this, SLOT(readOutput()));
Bookmarks