Click here to Skip to main content
Click here to Skip to main content

An easy way to customise the default Print dialog in an MFC app

By , 16 Jul 2002
 

Sample Image - PrintDialog.jpg

Overview

The CPrintDialog box is a standard system supplied resource used by just about every program under the sun that needs to print. But what if you need to customise it? What I present here is a quick and easy way to do this.

Stage 1 : Copy the common dialogs resource template

The first stage is to create in your project an exact copy of the existing dialog template used by the CPrintDialog class. I did this by copying the default source of this and pasting it into my applications .rc file. The default content of these can be found in the file PrnSetup.Dlg of your Visual C++ VC98\Include directory. In fact the default dialog templates for all the common dialog box's can be found here, so if you need to know a particular controls ID number, this is the place to look! See also the file Dlgs.h which includes the #define's of the actual controls on all the common dialog templates.

PRINTDLGORD DIALOG DISCARDABLE  32, 32, 288, 186
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU |
      DS_CONTEXTHELP | DS_3DLOOK
CAPTION "Print"
FONT 8, "MS Sans Serif"
BEGIN
    GROUPBOX        "Printer",grp4,8,4,272,84,WS_GROUP
    LTEXT           "&Name:",stc6,16,20,36,8
    COMBOBOX        cmb4,52,18,152,152,CBS_DROPDOWNLIST | CBS_SORT |
                    WS_VSCROLL | WS_GROUP | WS_TABSTOP
    PUSHBUTTON      "&Properties",psh2,212,17,60,14,WS_GROUP
    LTEXT           "Status:",stc8,16,36,36,10,SS_NOPREFIX
    LTEXT           "",stc12,52,36,224,10,SS_NOPREFIX | SS_LEFTNOWORDWRAP
    LTEXT           "Type:",stc7,16,48,36,10,SS_NOPREFIX
    LTEXT           "",stc11,52,48,224,10,SS_NOPREFIX | SS_LEFTNOWORDWRAP
    LTEXT           "Where:",stc10,16,60,36,10,SS_NOPREFIX
    LTEXT           "",stc14,52,60,224,10,SS_NOPREFIX | SS_LEFTNOWORDWRAP
    LTEXT           "Comment:",stc9,16,72,36,10,SS_NOPREFIX
    LTEXT           "",stc13,52,72,152,10,SS_NOPREFIX | SS_LEFTNOWORDWRAP
    CONTROL         "Print to fi&le",chx1,"Button",BS_AUTOCHECKBOX |
                    WS_GROUP | WS_TABSTOP,212,70,64,12
    GROUPBOX        "Print range",grp1,8,92,144,64,WS_GROUP
    CONTROL         "&All",rad1,"Button",BS_AUTORADIOBUTTON | WS_GROUP |
                    WS_TABSTOP,16,106,64,12
    CONTROL         "Pa&ges",rad3,"Button",BS_AUTORADIOBUTTON,16,122,36,12
    CONTROL         "&Selection",rad2,"Button",BS_AUTORADIOBUTTON,16,138,64,
                    12
    RTEXT           "&from:",stc2,52,124,20,8
    EDITTEXT        edt1,74,122,26,12,WS_GROUP | ES_NUMBER
    RTEXT           "&to:",stc3,100,124,16,8
    EDITTEXT        edt2,118,122,26,12,WS_GROUP | ES_NUMBER
    GROUPBOX        "Copies",grp2,160,92,120,64,WS_GROUP
    LTEXT           "Number of &copies:",stc5,168,108,68,8
    EDITTEXT        edt3,240,106,32,12,WS_GROUP | ES_NUMBER
    ICON            "",ico3,162,124,76,24,WS_GROUP | SS_CENTERIMAGE
    CONTROL         "C&ollate",chx2,"Button",BS_AUTOCHECKBOX | WS_GROUP |
                    WS_TABSTOP,240,130,36,12
    DEFPUSHBUTTON   "OK",IDOK,180,164,48,14,WS_GROUP
    PUSHBUTTON      "Cancel",IDCANCEL,232,164,48,14
END

You will have to modify it slightly. In the example above you would need to change the PRINTDLGORD to the name of the dialog resource you want to call it locally in your own application. In my case this was IDD_PRINT. Make sure that when you do this that the #define IDD_PRINT x exists in your resource.h file.

Stage 2 : Add controls and wrap the dialog template

Add any controls to the dialog and lay it out as you need, then invoke ClassWizard so that you can wrap your new dialog resource in a class object. Name it what you want, but make sure you select the base class as CPrintDialog. Once this has been created you can add message handler etc for any extra buttons you that you add to your dialog resource.

Stage 3 : Using your new CMyPrintDialog class

To get your application to use this new CPrintDialog dialog, you need to add the following code to your CView::OnPreparePrinting() function:

    // replace the standard CPrintDialog with our custom one!
    delete pInfo->m_pPD ; // release previous MFC allocated dialog object
    pInfo->m_pPD = new CMyPrintDialog(false) ;
    pInfo->m_pPD->m_pd.nMinPage = 1 ;
    pInfo->m_pPD->m_pd.nMaxPage = 0xffff ;
    pInfo->m_pPD->m_pd.hInstance = AfxGetInstanceHandle() ;
    pInfo->m_pPD->m_pd.lpPrintTemplateName = MAKEINTRESOURCE(IDD_PRINT) ;
    pInfo->m_pPD->m_pd.Flags |= PD_ENABLEPRINTTEMPLATE ;

Stage 4 : Compile and run your application

That's it, you just need to write your handler from there!

Enjoy!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Roger Allen
Software Developer (Senior) Sirius Analytical Instruments
United Kingdom United Kingdom
A research and development programmer working for a pharmaceutical instrument company for the past 17 years.
 
I am one of those lucky people who enjoys his work and spends more time than he should either doing work or reseaching new stuff. I can also be found on playing DDO on the Cannith server (Send a tell to "Maetrim" who is my current main)
 
I am also a keep fit fanatic, doing cross country running and am seriously into [url]http://www.ryushinkan.co.uk/[/url] Karate at this time of my life, training from 4-6 times a week and recently achieved my 1st Dan after 6 years.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionNewbie QuestionmemberMember 372884115-Dec-08 18:15 
GeneralDialog Fails To Appearmembermeow8812-Nov-07 14:27 
GeneralPrinter Status DialogmemberKarthikeyan U17-Sep-06 22:26 
QuestionHow to call customize printDialog from another dialog instead of CView?membererha_kong24-Jun-06 15:52 
GeneralI cannot unzip "PrintDialog.zip"memberrogerju13-Jun-06 22:36 
GeneralThank youmemberdel Fuego8-Jun-06 5:05 
Works great for my application.
 
= = = = = = = = = = = = = = = =
 
I want to die peacefully in my sleep like my uncle. Not screaming in terror like his passengers.
 
Juan Diego Hernandez Sanchez Garcia del Fuego
GeneralCollate iconmemberDavid Kentley26-Jan-06 5:29 
GeneralRe: Collate iconmembermzhunix2-Apr-08 13:37 
AnswerRe: Collate iconmemberpopsoftheyear16-Apr-09 8:33 
GeneralPrintDialogmemberF.Hashemi25-Sep-05 2:42 
Questionhow to custommize the default printsetup dialog?memberuseresu30-Mar-05 0:33 
GeneralResource File .rcmembercjpm1008-Mar-05 6:16 
GeneralSetting the Print To File directorymemberthermal32619-Jan-05 11:39 
GeneralSelect Printermemberpel-nn15-Nov-04 17:55 
QuestionHow to find the printer paper name?memberValentin Mocanu8-Oct-04 3:44 
QuestionHow to enable print/print preview command in File menu?memberSiang Loong30-Aug-04 2:20 
AnswerRe: How to enable print/print preview command in File menu?memberSiang Loong30-Aug-04 8:24 
QuestionHow to set Landscape printing option by defaultmemberJHAKAS21-Aug-04 4:03 
QuestionCustomizing the printer NAME field?memberercarignan13-Aug-04 5:23 
GeneralCustomizing PageSetupDlgmemberrajas18-Jun-04 11:41 
QuestionHow to enable Pages radio button?memberabicer29-Apr-04 0:20 
AnswerRe: How to enable Pages radio button?memberIneluki11-May-04 2:24 
AnswerRe: How to enable Pages radio button?member-Dy5-Aug-05 3:36 
GeneralProperties Dlg Not WorkingsussTurab110-Mar-04 20:21 
GeneralNewbie questionmemberlapc3-Oct-03 3:42 
QuestionAnybody knows how to port this .NET?memberjwang774507-Sep-03 10:55 
AnswerRe: Anybody knows how to port this .NET?memberCloaca19-Jan-04 18:10 
GeneralRe: Anybody knows how to port this .NET?sussAnonymous20-Jan-04 5:31 
GeneralRe: Anybody knows how to port this .NET?memberTDWiseley23-Feb-07 5:56 
Generalit is not working for mememberMuhammad Kamran25-Aug-03 5:48 
GeneralRe: it is not working for mememberRoj8-Sep-06 22:35 
GeneralCaveat for resource only dllmembermikeh8-Aug-03 11:15 
GeneralProblem with Number of Copies Spin ControlmemberHal Director7-Aug-03 5:48 
GeneralRe: Problem with Number of Copies Spin ControlmemberHal Director8-Aug-03 4:30 
GeneralLink Dynamically with MFCmemberjwalto1@no.spam.umbc.edu13-May-03 9:09 
GeneralGood but how about Add Printer Listviewmemberalan9324-Oct-02 6:48 
GeneralExcellent info...questionsussTom Pullara8-Oct-02 9:08 
GeneralCareful if loading into resource editorsussAnonymous7-Oct-02 23:43 
GeneralCPageSetupDialogmemberdours7-Oct-02 0:19 
QuestionHow to set Number of copies?memberThomasKennedy11-Sep-02 19:12 
AnswerRe: How to set Number of copies?memberRoger Allen11-Sep-02 23:16 
AnswerRe: How to set Number of copies?memberjwalto1@no.spam.umbc.edu13-May-03 13:44 
QuestionNot finding resource?sussdrhender30-Aug-02 9:15 
QuestionHow to initialize my own controls ?sussAnonymous29-Aug-02 2:06 
AnswerRe: How to initialize my own controls ?memberRoger Allen29-Aug-02 3:30 
GeneralRe: How to initialize my own controls ?sussAnonymous30-Aug-02 2:10 
GeneralRe: How to initialize my own controls ?membersachelis16-Jul-03 16:46 
Questionhow about PageSetup?sussAnonymous15-Aug-02 17:49 
AnswerRe: how about PageSetup?memberRoger Allen15-Aug-02 23:59 
GeneralGreat!!!memberMohit Khanna18-Jul-02 4:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130619.1 | Last Updated 17 Jul 2002
Article Copyright 2002 by Roger Allen
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid