About using of QPrint and QPrintDialog
Article Metadata
Tested with
Devices(s): Emulator / desktop / device
Compatibility
Platform(s): All Qt Supported
Article
Keywords: QPrint, QPrintDialog
Created: (28 Nov 2010)
Last edited: jimgilmour1
(29 Nov 2010)
When we use QPrinter and QPrintDialog,we'd better put them in the predefine.
Such as
#ifndef QT_NO_PRINTER
...
QPrinter printer(QPrinter::HighResolution);
QPrintDialog dialog(&printer, this);
...
#endif
or the compiling process will not be successful because of no printer support.

