Hello again.

I have a simple code, which is slot function:
Qt Code:
  1. void getProducts(){
  2. QProcess progress_process;
  3. QString path(QDir::currentPath()+"/Progress.exe");
  4. progress_process.start(path);
  5. getProductsDo();
  6. //progress_process.close();
  7. }
To copy to clipboard, switch view to plain text mode 
The problem is I get no errors, no warnings, but new process does not start. I tried executing MS Windows commands and it failed as well. What's wrong? Any tips?