Click here to Skip to main content
15,892,927 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.8K   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 
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 
Hi,

When I run the WBP.exe application, the ZoneAlarm (version 6.0.667.000) firewall says:

1. WBP MFC application is trying to access the trusted zone
Application: WBP.EXE
Destination IP: 127.0.0.1 port 1096

Allow Deny

2. If I choose "Allow" then it asks again :

WBP MFC application is trying to access the trusted zone
Application: WBP.EXE
Destination IP: 213.157.178.1 DNS

Allow Deny

3. If I choose "Allow" then I finally see the
www.codeproject.com web page displayed correctly.

4. But what bothers me much more, is this:

If I close and then run again WBP.exe, then ZoneAlarm tells me that WBP.exe is trying to access the trusted zone on another port(??), like this:

WBP.exe is trying to access the trusted zone
Application: ResizableDialog.exe
Destination IP: 127.0.0.1 port 1132


Why are the TCP/IP ports used by the web browser control seem to change each time I run the application ?
First 1096, then 1132, then 1157 and so on...

What is the Microsoft web browser control
doing on my loopback address ??

The reason must be somewhere inside the internal details of the web browser control. But where ?

Please tell me if, on your computers, you are also noticing this behaviour.

I use the Internet Explorer 6.0 SP1 browser. I have also applied all the security updates/patches from the Microsoft web site. I have no spyware, I can navigate the Internet without any problem of any kind.

Thank you.



Alexandru


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.