PDA

View Full Version : Why PRINTF output doesn´t appear at Application Output panel ?



andre_teprom
24th August 2011, 03:06
Dear friends,


I´m using QT designer.
I reviewed all settings and seems to be nice, but nothing is shown during program execution.

Any sugestion ?

+++

ChrisW67
24th August 2011, 08:25
Designer has nothing to do with program output :confused:

On Windows you have to add:


CONFIG += console

to your PRO file so that there is a console window to display your console output. The output in the Qt Creator "Application Output" panel is limited to debugger messages.

wysota
24th August 2011, 08:29
Disabled console subsystem or not flushing stdout.

andre_teprom
27th August 2011, 21:44
On Windows you have to add:


CONFIG += console


That´s it !
Thanks...