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

WebBrowser Control: How to Print Preview

By , 22 Mar 2005
 

Sample Image - wbp.jpg

Introduction

The WebBrowser control is widely used to display web pages either in MFC or in Windows Forms applications. The control has more functionality than you may think - print preview, for instance. If you have been using IE 5.5 or higher, you probably have already seen the print preview window. It is a part of the WebBrowser control. If you have worked with CHtmlView, you also should know this functionality. And you perhaps have recognized that this preview window has nothing to do with the traditional print preview with MFC. This article shows you how simple it is to use print preview and page setup in the WebBrowser control. The requirement is IE 5.5 or higher installed.

Add print preview functionality

In the print preview method, I start by verifying the WebBrowser control is valid. Then, I retrieve a pointer to the IDispatch interface pointer to the HTMLDocument, from which I query the IOleCommandTarget interface, and store the pointer in lpTarget. You can find information on the IOleCommandTarget interface in MSDN. I won't repeat the instructions here. Finally, I execute the print preview command by calling IOleCommandTarget::Exec with the appropriate parameters. The command ID OLECMDID_PRINTPREVIEW is defined in "docobj.h". The GUI of print preview is handled by the WebBrowser control.

Following is the source code of the method:

void CWBPDlg::OnDemoPrintpreview() 
{
    // Verify the WebBrowser control is valid.
    LPDISPATCH lpDispApp = m_wndBrowser.GetApplication();
    if(lpDispApp)
    {
        // Get the HTMLDocument interface.
        LPDISPATCH lpDispDoc = m_wndBrowser.GetDocument();
        if (lpDispDoc != NULL)
        {
            // Get the IOleCommandTarget interface so that 
            // we can dispatch the command.
            LPOLECOMMANDTARGET lpTarget = NULL;
            if (SUCCEEDED(lpDispDoc->
                  QueryInterface(IID_IOleCommandTarget,
                                     (LPVOID*) &lpTarget)))
            {
                // Execute the print preview command. The 
                // control will handle the print preview
                // GUI.
                // OLECMDID_PRINTPREVIEW is defined in
                // "docobj.h".
                lpTarget->Exec(NULL,
                    OLECMDID_PRINTPREVIEW, 0, NULL, NULL);
                lpTarget->Release();
            }
            lpDispDoc->Release();
        }
        lpDispApp->Release();
    }
}

Now you can compile and run the application. The GUI of print preview is the same as that you have seen in IE.

Use WebBrowser::ExecWB method - Alexander Tsarfin's contribution

The WebBrowser class implements a wrapper that allows you to execute a command on an OLE object using the IOleCommandTarget::Exec method.

void CWBPDlg::OnDemoPrintpreview()
{
    m_wndBrowser.ExecWB(OLECMDID_PRINTPREVIEW,
                    OLECMDEXECOPT_PROMPTUSER, NULL, NULL);
}

Add page setup

With the same pattern, the following function opens the page setup dialog box:

void CWBPDlg::OnPagesetup()
{
    m_wndBrowser.ExecWB(OLECMDID_PAGESETUP, OLECMDEXECOPT_PROMPTUSER, NULL, NULL);
}

Conclusion

The above two approaches do the same work – one works with COM interfaces, and the other uses a nicely wrapped method. If you go a further step, you will find other OLE command IDs defined in docobj.h. Once you get the IOleCommandTarget interface, you can easily use them. That is beyond the scope of this article.

Revision History

  • 26 Jun 2002 - Reformatted code to prevent scrolling.
  • 20 March 2005 - Added page setup dialog box.

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

Frank W. Wu
Technical Lead
United States United States
Member
No Biography provided

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   
GeneralThanks! Just what I needed.memberMitchel Haas24 Aug '09 - 15:13 
GeneralScroll doesn't workmemberFrank Lavaleaf17 Oct '07 - 5:36 
GeneralRe: Scroll doesn't workmemberFrank W. Wu17 Oct '07 - 8:31 
GeneralRe: Scroll doesn't workmemberFrank Lavaleaf17 Oct '07 - 9:01 
GeneralRe: Scroll doesn't workmemberFrank Lavaleaf17 Oct '07 - 9:23 
QuestionChanging the size of the Print Previewmemberandrewtruckle18 Feb '07 - 0:57 
AnswerRe: Changing the size of the Print PreviewmemberFrank W. Wu18 Feb '07 - 6:28 
GeneralRe: Changing the size of the Print Preview [modified]memberandrewtruckle18 Feb '07 - 7:57 
Questionhow to do preview in the same window, not another popup window?memberflyingxu14 Jan '07 - 4:27 
AnswerRe: how to do preview in the same window, not another popup window?memberFrank W. Wu15 Jan '07 - 11:44 
GeneralAppletmembercolin-12312 Sep '06 - 23:48 
GeneralFreeing memory twicememberFrank W. Wu13 Sep '06 - 3:49 
GeneralRe: Freeing memory twicemembercolin-12313 Sep '06 - 4:28 
GeneralMy firewall(ZoneAlarm) is complainingmemberAlexandru31 Jan '06 - 1:18 
QuestionHow to add the browser object in CHtmlView's Scrollbarmemberdhawan_boss@yahoo.com28 Jul '05 - 23:17 
AnswerRe: How to add the browser object in CHtmlView's ScrollbarmemberFrank W. Wu29 Jul '05 - 6:21 
GeneralPlease help me..memberkpt050712 Apr '04 - 0:26 
QuestionRe: Please help me..memberChrisRibe24 Jul '06 - 11:46 
AnswerRe: Please help me..memberRohit code project10 Dec '06 - 20:04 
GeneralRe: Please help me..memberChrisRibe12 Dec '06 - 4:31 
GeneralThank You!memberDouggie93720 Feb '04 - 6:32 
Generalwebmembersssssssssssssssssssss16 Jan '04 - 0:42 
GeneralGood ArticlememberKoundinya9 Jan '04 - 0:03 
QuestionHow to navigate WenBrouser to HTML from resourcesmembergeorgeivanov7 Dec '03 - 23:40 
GeneralDirect Print from CHtmlViewsussbryan f4 Dec '03 - 9:30 

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 23 Mar 2005
Article Copyright 2001 by Frank W. Wu
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid