Click here to Skip to main content
Licence 
First Posted 16 May 2000
Views 173,433
Bookmarked 45 times

A Simple Printing Mechanism

By | 16 May 2000 | Article
Learn how to implement print support in your applications.
  • Download source files - 6 Kb

    A question that frequently arises is "How do I print?" In many cases, the full-blown print handling of a document/view class is inappropriate; in other cases, such as a dialog-based application, it is not available directly via the MFC library. This little class provides for some simple line-printer-simulation output, suitable for printing files, simple text, etc. This is the print mechanism I use for my logging control (and the code for this accompanies that project as well).

    void CMyClass::Print()
    {
        CPrintDialog dlg(FALSE,
    		      PD_ALLPAGES |
    		      PD_HIDEPRINTTOFILE |
    		      PD_NOPAGENUMS |
    		      PD_RETURNDC |
    		      PD_USEDEVMODECOPIES);
        if(has a selection)
    	{ /* enable selection */
            dlg.m_pd.Flags |= PD_SELECTION;
        } /* enable selection */
        else
        { /* use selection */
            dlg.m_pd.Flags |= PD_NOSELECTION;
        } /* use selection */
        
        switch(dlg.DoModal())
        { /* DoModal */
        case 0:
        case IDCANCEL:
            return;
        case IDOK:
            break;
        default:
            ASSERT(FALSE); // impossible condition
            return;
        } /* DoModal */
         
        CDC dc;
        dc.Attach(dlg.m_pd.hDC);
        printer = new CPrinter(&dc);
        if(printer->StartPrinting())
        { /* success */
            for(some sample loop condition)
            { /* print line */
                CString s;
                ... // form the string you want to print
                printer->PrintLine(s);
            } /* print line */
    
            printer->EndPrinting();
        } /* success */
        delete printer;
        ::DeleteDC(dc.Detach());
    } // CTraceList::Print
    

    This is listed as a simple printing mechanism. It is not as elaborate as the one in our book Win32 Programming., but that is a pure-C version. This is a simpler, but pure MFC, example.

    You can download just this printing code here, or you can download it as part of the Logging Control project.


    CPrinter

    CPrinter::CPrinter(CDC * dc)
    Constructs a printer object with the DC of a printer. This is typically obtained from the CPrintDialog by using the flag PD_RETURNDC, then using CDC::FromHandle to get an MFC object for the DC.

    CPrinter::EndPrinting()
    This terminates the print job. It calls the necessary EndPage and EndDoc functions. If the CPrinter object is destroyed while a print job is active, the destructor will call this method.

    int CPrinter::GetPageNumber()
    This function can be called by a subclass's PageHeading routine to get the current page number.

    virtual void CPrinter::PageHeading()
    This method can be overridden in a subclass to print a page heading. The default effect in the base class is to print the program name on the left and the page number on the right.

    void CPrinter::PrintLine(const CString & line)
    This method prints a single line to the printer. No attempt is made to do line wrapping. Implicit left and top margins are assumed. If the line would overflow the existing printable page area, the current page is terminated and a new page is started. The page number is incremented, and heading is printed on the new page (see CPrinter::PageHeading()).

    virtual void CPrinter::SetPrinterFont()
    In the base class, this establishes the printer font as the stock ANSI_FIXED_FONT. A subclass may override this to provide its own font.

    CPrinter::StartPrinting()
    Starts a document on the printer. This must be called before any PrintLine calls are made. This sets up default margins and performs the necessary ::StartDoc call.


    The views expressed in these essays are those of the author, and in no way represent, nor are they endorsed by, Microsoft.

    Send mail to newcomer@flounder.com with questions or comments about this article.
    Copyright © 2000, The Joseph M. Newcomer Co. All Rights Reserved
    www.flounder.com/mvp_tips.htm
  • License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here

    About the Author

    Joseph M. Newcomer



    United States United States

    Member



    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

     
    You must Sign In to use this message board. (secure sign-in)
     
    Search this forum  
     FAQ
        Noise  Layout  Per page   
      Refresh
    QuestionPrinting Problum Pinmemberlcloonkar4:15 10 Jan '10  
    Questionwhen printer is not configured? Pinmember723Alex10:41 20 Jul '07  
    GeneralMFC Print preview problem PinmemberEngineer Masood16:52 30 Mar '06  
    GeneralTnx Pinmemberquistiun18:26 8 Mar '06  
    GeneralProblem found in StartPrinting Pinmemberapargeter9:14 24 Sep '05  
    GeneralProblem when Print Arabic fonts Pinmemberbushka11:25 12 Jun '05  
    GeneralRe: Problem when Print Arabic fonts PinmemberJoseph M. Newcomer17:11 12 Jun '05  
    GeneralRe: Problem when Print Arabic fonts PinsussAnonymous5:54 13 Jun '05  
    GeneralPrinting files from VB/VC PinmemberfranklinjIssac1:50 4 Apr '05  
    GeneralRe: Printing files from VB/VC PinmemberJoseph M. Newcomer10:25 4 Apr '05  
    QuestionHow could i print Multiple pages in Java PinsussAnonymous17:54 8 Feb '05  
    GeneralGood job but... Pinmemberscoroop6:00 12 Dec '04  
    Generalprinting strings Pinmembervivadotnet11:34 16 Jul '04  
    GeneralRe: printing strings PinmemberJoseph M. Newcomer21:32 16 Jul '04  
    GeneralIts not working Pls help Pinmemberjssuthar19:35 18 Jan '04  
    GeneralAuto Line Wrap PinmemberWouter Dhondt2:41 22 Jan '03  
    GeneralRe: Auto Line Wrap Pinmemberheggum11:36 26 Aug '03  
    GeneralGetting values from Print Setup PinmemberJack_pt8:58 4 Nov '02  
    GeneralRe: Getting values from Print Setup PinmemberJoseph M. Newcomer9:12 4 Nov '02  
    GeneralRe: Getting values from Print Setup PinmemberJack_pt17:18 4 Nov '02  
    GeneralNT prob PinmemberKwakkie22:20 29 Aug '02  
    GeneralCancel causes "Debug Assertion Failed"!!! PinsussKristijan2:59 14 Aug '02  
    GeneralFixed width Probs Pinmemberdazinith8:21 11 Jun '02  
    GeneralRe: Fixed width Probs PinsussAnonymous10:36 11 Jul '02  
    GeneralPrintDialog without user intervention PinmemberGünter11:04 29 May '02  

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

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

    Permalink | Advertise | Privacy | Mobile
    Web02 | 2.5.120517.1 | Last Updated 17 May 2000
    Article Copyright 2000 by Joseph M. Newcomer
    Everything else Copyright © CodeProject, 1999-2012
    Terms of Use
    Layout: fixed | fluid