Click here to Skip to main content
15,885,244 members
Articles / Web Development / HTML
Article

WebBrowser Control: How to Print Preview

Rate me:
Please Sign up or sign in to vote.
4.93/5 (19 votes)
22 Mar 2005 383.2K   4.6K   77   60
Insert the WebBrowser control into a dialog box, and add print preview functionality to it by implementing the IOleCommandTarget interface.

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


Written By
Technical Lead
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questionprint web browser control page in silverlight MVVM Pin
Member 102767946-Mar-15 20:36
Member 102767946-Mar-15 20:36 
GeneralThanks! Just what I needed. Pin
Mitchel Haas24-Aug-09 15:13
Mitchel Haas24-Aug-09 15:13 
GeneralScroll doesn't work Pin
Frank Lavaleaf17-Oct-07 5:36
Frank Lavaleaf17-Oct-07 5:36 
GeneralRe: Scroll doesn't work Pin
Frank W. Wu17-Oct-07 8:31
Frank W. Wu17-Oct-07 8:31 
GeneralRe: Scroll doesn't work Pin
Frank Lavaleaf17-Oct-07 9:01
Frank Lavaleaf17-Oct-07 9:01 
Stranger and stranger.

The browser doesn't look at a file or website but at string generated from an XML file and an XSLT file. The output is formated as HTML and sent to the browser as a stream.

One odd thing I just saw is that when I do a print or print preview, the output is exactly what I expect. When you asked if the output was ok in IE, I switched that code to do a save as to look at the stream data. What I got is not what was shown in the print. To open the browser, I found I needed to have a document before I could connect it to the stream. I picked the XSLT file because I know it will always be present in the system. What was saved was the XSLT file and not the HTML though the HTML is what is printed????

I have opened a regular HTML file and the scroll still doesn't work.

I have been reading and there seems to be something about Active Containers needing to be told how to scroll. I haven't had a chance to go too deeply into this idea yet.

Frank (the other)
GeneralRe: Scroll doesn't work Pin
Frank Lavaleaf17-Oct-07 9:23
Frank Lavaleaf17-Oct-07 9:23 
QuestionChanging the size of the Print Preview Pin
andrewtruckle18-Feb-07 0:57
andrewtruckle18-Feb-07 0:57 
AnswerRe: Changing the size of the Print Preview Pin
Frank W. Wu18-Feb-07 6:28
Frank W. Wu18-Feb-07 6:28 
GeneralRe: Changing the size of the Print Preview [modified] Pin
andrewtruckle18-Feb-07 7:57
andrewtruckle18-Feb-07 7:57 
Questionhow to do preview in the same window, not another popup window? Pin
flyingxu14-Jan-07 4:27
flyingxu14-Jan-07 4:27 
AnswerRe: how to do preview in the same window, not another popup window? Pin
Frank W. Wu15-Jan-07 11:44
Frank W. Wu15-Jan-07 11:44 
GeneralApplet Pin
colin-12312-Sep-06 23:48
colin-12312-Sep-06 23:48 
GeneralFreeing memory twice Pin
Frank W. Wu13-Sep-06 3:49
Frank W. Wu13-Sep-06 3:49 
GeneralRe: Freeing memory twice Pin
colin-12313-Sep-06 4:28
colin-12313-Sep-06 4:28 
GeneralMy firewall(ZoneAlarm) is complaining Pin
Alexandru Matei31-Jan-06 1:18
Alexandru Matei31-Jan-06 1:18 
QuestionHow to add the browser object in CHtmlView's Scrollbar Pin
dhawan_boss28-Jul-05 23:17
dhawan_boss28-Jul-05 23:17 
AnswerRe: How to add the browser object in CHtmlView's Scrollbar Pin
Frank W. Wu29-Jul-05 6:21
Frank W. Wu29-Jul-05 6:21 
GeneralPlease help me.. Pin
kpt050712-Apr-04 0:26
kpt050712-Apr-04 0:26 
QuestionRe: Please help me.. Pin
ChrisRibe24-Jul-06 11:46
ChrisRibe24-Jul-06 11:46 
AnswerRe: Please help me.. Pin
Rohit code project10-Dec-06 20:04
Rohit code project10-Dec-06 20:04 
GeneralRe: Please help me.. Pin
ChrisRibe12-Dec-06 4:31
ChrisRibe12-Dec-06 4:31 
GeneralThank You! Pin
Douggie93720-Feb-04 6:32
Douggie93720-Feb-04 6:32 
Generalweb Pin
sssssssssssssssssssss16-Jan-04 0:42
sssssssssssssssssssss16-Jan-04 0:42 
GeneralGood Article Pin
Koundinya9-Jan-04 0:03
Koundinya9-Jan-04 0:03 
QuestionHow to navigate WenBrouser to HTML from resources Pin
george ivanov7-Dec-03 23:40
george ivanov7-Dec-03 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.