Click here to Skip to main content
15,885,952 members
Articles / Desktop Programming / MFC
Article

MFC Print preview extension DLL for dialogs

Rate me:
Please Sign up or sign in to vote.
4.74/5 (29 votes)
26 Dec 2002CPOL2 min read 276.4K   9.6K   53   68
An MFC extension library, so your dialogs can have easy print/print preview support.

Sample Image - preview.jpg

Introduction

After trying to make use of Koay's code to allow print preview in a dialog, I released that it was a lot of work to get print preview in a dialog working, so I took the code and wrapped it up in an MFC extension DLL which your MFC applications can link to. So now to get print and preview options working, you just need to derive your CDialog class from the exported class CPrintPreviewDialog. Once you have done that, then you can override the standard Doc/View print preview options to provide your printed output.

  • virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  • virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  • virtual void OnPrepareDC(CDC* pDC, CPrintInfo* pInfo = NULL);
  • virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
  • virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);

Using the extension DLL

The PrintExtension project builds the library and DLL file that will be used by your project. Once that has been built, you will need to add the following statements in your MFC application to start making use of its features:

// generally, this would go in your stdafx.h file
#include "PrintExtension.h"

The library will be automatically linked to your project. You just have to make sure that the PrintExtension.DLL (PrintExtensiond.dll for debug) file is in the same directory as your application executable.

You then need to convert your CDialog derived class to derive from the CPrintPreviewDialog class. This can be done by doing a Find/Replace on the .h/.cpp dialog source files from CDialog to CPrintPreviewDialog.

To add the preview and print functionality, you need to add buttons or menu options for the ID's ID_FILE_PRINT and ID_FILE_PRINT_PREVIEW.

Override your required printing functions to generate output, usually a minimum of OnPrint() and OnPreparePrinting().

Everything else should work automatically.

Notes on use

If you are using this in a dialog application (non SDI/MDI), then you will also need to add a menu resource to your application. The menu content does not matter, it just needs to exist. It should have the ID IDR_MAINFRAME, and will be used when the hidden frame is created. As the frame is never seen by the user, the menu options never become active, but it is required for the frame window to be created successfully.

In OnPreparePrinting(), you must call the base class (CPrintPreviewDialog::OnPreparePrinting(pInfo);), before exiting the function so that a required print preview function is called. If you do not, you get an ASSERT as listed in some of the comments below.

Problems encountered

There were some fiddely problems to make sure that, when you clicked on Print in the preview view, the dialog handled the command and not any open background document (if doing this in an SDI or MDI MFC app).

Acknowledgements

This MFC extension DLL draws heavily on the code by Koay Kah Hoe in the article Print Previewing without the Document/View Framework.

Revision history

  • 5th December 2002 - Version 1
  • 27th December 2002 - Demo project added and some extra notes added to article text

Enjoy!

License

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


Written By
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.

Comments and Discussions

 
GeneralRe: Crashes on close with close button Pin
N n MISHRA11-Jun-05 4:39
N n MISHRA11-Jun-05 4:39 
GeneralRe: Crashes on close with close button Pin
varandas795-Mar-06 3:58
varandas795-Mar-06 3:58 
QuestionStill crashes on close with close button Pin
Mr. S3-Apr-06 4:08
Mr. S3-Apr-06 4:08 
AnswerRe: Crashes on close with close button Pin
Eduard Huguet30-Nov-06 0:08
Eduard Huguet30-Nov-06 0:08 
GeneralPage setup Pin
rpar2-Aug-04 19:09
rpar2-Aug-04 19:09 
GeneralPrev Page always disabled on Print Preview Pin
Anonymous26-Jul-04 4:26
Anonymous26-Jul-04 4:26 
GeneralRe: Prev Page always disabled on Print Preview Pin
Mr.-G30-Aug-05 3:47
Mr.-G30-Aug-05 3:47 
GeneralRe: Prev Page always disabled on Print Preview Pin
Member 418928114-Dec-08 1:24
Member 418928114-Dec-08 1:24 
1. protected:
//{{AFX_MSG(CMyPreviewView)
afx_msg void OnUpdateNumPageChange(CCmdUI* pCmdUI);//add
//}}AFX_MSG

2.
BEGIN_MESSAGE_MAP(CMyPreviewView, CPreviewView)
//{{AFX_MSG_MAP(CMyPreviewView)
ON_UPDATE_COMMAND_UI(AFX_ID_PREVIEW_NUMPAGE, OnUpdateNumPageChange)//add
//}}AFX_MSG_MAP
ON_COMMAND(AFX_ID_PREVIEW_PRINT, OnPreviewPrint)
END_MESSAGE_MAP()

3.
void CMyPreviewView::OnUpdateNumPageChange(CCmdUI* pCmdUI)
{
CPreviewView::OnUpdateNumPageChange(pCmdUI);

// set text of button to opposite of current state
UINT nPages = (m_nZoomState == ZOOM_OUT ? m_nPages : m_nZoomOutPages);
CString strTwoPage(MAKEINTRESOURCE(AFX_IDS_TWOPAGE));
CString strOnePage(MAKEINTRESOURCE(AFX_IDS_ONEPAGE));
pCmdUI->SetText(nPages == 1 ? strTwoPage : strOnePage);
}

void CMyPreviewView::OnDraw(CDC* pDC)
{
// TODO: Add your specialized code here and/or call the base class
CPreviewView::OnDraw(pDC);
m_pToolBar->PostMessage(WM_IDLEUPDATECMDUI,(WPARAM) TRUE);//add

}
GeneralPrev Page always disabled on Print Preview Pin
Anonymous26-Jul-04 4:26
Anonymous26-Jul-04 4:26 
GeneralPrev Page is disabled Pin
Monk De Wolly De Honk26-Jul-04 4:17
sussMonk De Wolly De Honk26-Jul-04 4:17 
GeneralPrev Page is disabled Pin
Monk De Wolly De Wonk26-Jul-04 4:17
sussMonk De Wolly De Wonk26-Jul-04 4:17 
GeneralPrev Page is disabled Pin
Monk De Holly De Wonk26-Jul-04 4:14
sussMonk De Holly De Wonk26-Jul-04 4:14 
GeneralRe: Prev Page is disabled Pin
Roger Allen26-Jul-04 5:35
Roger Allen26-Jul-04 5:35 
GeneralRe: Prev Page is disabled Pin
Anonymous18-Nov-04 11:03
Anonymous18-Nov-04 11:03 
GeneralRe: Prev Page is disabled Pin
min_2_max22-Dec-07 22:09
min_2_max22-Dec-07 22:09 
Generalabout the class CMyPreviewView : public CPreviewView Pin
ybugchen30-Jun-04 21:29
ybugchen30-Jun-04 21:29 
GeneralRe: about the class CMyPreviewView : public CPreviewView Pin
Roger Allen7-Jul-04 6:18
Roger Allen7-Jul-04 6:18 
GeneralJust a hint for unicode users Pin
Jesterka19-May-04 1:05
Jesterka19-May-04 1:05 
Questionhow to compile program if use MFC in static library? Pin
kisa9016-Mar-04 13:03
kisa9016-Mar-04 13:03 
AnswerRe: Facing the same problem( how to compile program if use MFC in static library?) Pin
N n MISHRA2-May-05 7:58
N n MISHRA2-May-05 7:58 
GeneralGood but not profect Pin
sortfish26-Feb-04 20:51
sortfish26-Feb-04 20:51 
Questionhow can this dll invoke in visual foxpro? Pin
lin_zhang12-Feb-04 20:20
lin_zhang12-Feb-04 20:20 
Generalrelease can not work?! Pin
sortfish1-Feb-04 21:05
sortfish1-Feb-04 21:05 
GeneralDemo program doesn't work Pin
hwjang1112-Oct-03 2:49
hwjang1112-Oct-03 2:49 
GeneralRe: Demo program doesn't work Pin
29-Jan-04 23:40
suss29-Jan-04 23:40 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.