Hi there, I got a piece of code right down here:

Qt Code:
  1. fullPath = QString("E:/bin/fis/wave.exe"));
  2. QProcess *process = new QProcess();
  3. process->start(fullPath);
  4. if(!process->waitForStarted())
  5. {
  6. qDebug() << process->state();
  7. }
  8. qDebug() << "~" << process->state();
To copy to clipboard, switch view to plain text mode 

The qDebug() output is:

Qt Code:
  1. ~ 2
To copy to clipboard, switch view to plain text mode 

It means running (QProcess::Running equals 2) ,but I cannot see any process called wave running on my computer through Task Manager, neither the GUI. Anybody has suggestions?