Hi all!

Is it possible to use QProcess like the WinAPI Shellexecute?
I would like to print several Documents and i do this with

ShellExecute(NULL, (LPWSRT)"print", (LPWSTR)doc.utf16(), NULL,NULL,SW_HIDE);
But i have to wait until the process is finished, but i can't do this with ShellExecute and
ShellExecuteEx doesn't work really?

Now can i do the same like ShellExecute with qprocess?
THX