PDA

View Full Version : QProcess Problem



kingfinn
28th May 2010, 18:06
Hey there,

I'm starting a process with QProcess and want to write to its stdin.

But for some reason canReadline returns false...

graeme
29th May 2010, 03:10
stdin is for reading not writing.
However, you might want to look at setStandardInputFile() and setStandardOutputFile().These need to be called before you start() the process.