PDA

View Full Version : recieving QProcess::write data



node_ex
17th July 2008, 10:46
Hi,

I am using Qt4. From main thread i am starting third party binary(application) using QProcess. I am writing (QProcess::write("data")) to the process. My issue is how to recieve that data in the 3rd party application.

Regards,
node_ex.

jacek
26th July 2008, 00:05
Read it from stdin.

node_ex
28th July 2008, 12:09
Hi,

I am using Qt4. How to catch the data sent by QProcess::write("p"), in the process which invokes some executable.what i need to code in the application which invoked by process.

Regards,
node_ex.

jacek
28th July 2008, 12:18
As I already wrote, you can read it from the standard input.

P.S. Please, don't start more than one thread on the same problem.