Click here to Skip to main content
15,860,943 members
Articles / Desktop Programming / MFC
Article

Automated IE SaveAs MHTML

Rate me:
Please Sign up or sign in to vote.
5.00/5 (29 votes)
4 Sep 20023 min read 460.1K   7.9K   95   112
This article demonstrates how to automate IE's Save As functionality

Introduction

The purpose of this article is to show how to automate the fully fledged Save As HTML feature from Internet Explorer, which is normally hidden to those using the Internet Explorer API. Saving the current document as MHTML format is just one of the options available, including:

  • Save As MHTML (whole web page, images, ... in a single file)
  • Save As Full HTML (additional folder for images, ...)
  • Save HTML code only
  • Save As Text

Saving Silently as HTML Using the Internet Explorer API

In fact, the ability to save the current web page for storage without showing a single dialog box is already available to everyone under C++, using the following code, with an important restriction:

C++
LPDISPATCH lpDispatch = NULL;
IPersistFile *lpPersistFile = NULL;

// m_ctrl is an instance of the Web Browser control
lpDispatch = m_ctrl.get_Document();
lpDispatch->QueryInterface(IID_IPersistFile, (void**)&lpPersistFile);

lpPersistFile->Save(L"c:\\htmlpage.html",0);
lpPersistFile->Release();
lpDispatch->Release();

(caption for code above) Saving HTML code only, without dialog boxes

The restriction is that we are talking about the HTML code only, not the web page. Of course, what is interesting is to gain access to full HTML archives with images and so on.

Because there is no "public" or known way to ask for this feature without showing one or more dialog boxes from Internet Explorer, what we are going to do is hook the operating system to listen all window creations, including the dialog boxes. Then we'll ask Internet Explorer for the feature and override the file path from the dialog boxes without being seen. Finally, we'll mimic the user clicking on the Save button to validate the dialog box and unhook ourselves. That's done!

Image 1

Hooking Internet Explorer to Save As HTML without popping the dialog boxes

This was the short workflow, but there are a few tricks to get along and this article is a unique opportunity to go into detail. By the way, the code is rooted by an article from MS about how to customize Internet Explorer Printing by hooking the Print dialog boxes; see here or here. In our app, we have our own Save As feature:

C++
m_wbSaveAs.Config( CString("c:\\htmlpage.mhtml"), SAVETYPE_ARCHIVE );
m_wbSaveAs.SaveAs();

// where the second parameter is the type of HTML needed :
typedef enum _SaveType
{
    SAVETYPE_HTMLPAGE = 0,
    SAVETYPE_ARCHIVE,
    SAVETYPE_HTMLONLY,
    SAVETYPE_TXTONLY
} SaveType;

We start the SaveAs() implementation by installing the hook:

C++
// prepare SaveAs Dialog hook
//
g_hHook = SetWindowsHookEx(WH_CBT, CbtProc, NULL, GetCurrentThreadId());
if (!g_hHook)
    return false;

// make SaveAs Dialog appear
//
// cmd = OLECMDID_SAVEAS (see ./include/docobj.h)
g_bSuccess = false;
g_pWebBrowserSaveAs = this;
HRESULT hr = m_pWebBrowser->ExecWB(OLECMDID_SAVEAS, 
    OLECMDEXECOPT_PROMPTUSER, NULL, NULL);

// remove hook
UnhookWindowsHookEx(g_hHook);
g_pWebBrowserSaveAs = NULL;
g_hHook = NULL;

The hook callback procedure is just hardcore code; see for yourself:

C++
LRESULT CALLBACK CSaveAsWebbrowser::CbtProc(int nCode, 
    WPARAM wParam, LPARAM lParam) 
{  
    // the windows hook sees for each new window being created :
    // - HCBT_CREATEWND : when the window is about to be created
    //      we check out if it is a dialog box (classid = 0x00008002, 
    //      see Spy++)
    //      and we hide it, likely to be the IE SaveAs dialog
    // - HCBT_ACTIVATE : when the window itself gets activited
    //      we run a separate thread, and let IE do his own init steps in 
    //      the mean time
    switch (nCode)
    {
        case HCBT_CREATEWND:
        {
            HWND hWnd = (HWND)wParam;
            LPCBT_CREATEWND pcbt = (LPCBT_CREATEWND)lParam;
            LPCREATESTRUCT pcs = pcbt->lpcs;
            if ((DWORD)pcs->lpszClass == 0x00008002)
            {
                g_hWnd = hWnd;          // Get hwnd of SaveAs dialog
                pcs->x = -2 * pcs->cx;  // Move dialog off screen
            }
            break;
        }    
        case HCBT_ACTIVATE:
        {
            HWND hwnd = (HWND)wParam;
            if (hwnd == g_hWnd)
            {
                g_hWnd = NULL;
                g_bSuccess = true;

                if (g_pWebBrowserSaveAs->IsSaveAsEnabled())
                {
                    g_pWebBrowserSaveAs->SaveAsDisable();

                    CSaveAsThread *newthread = new CSaveAsThread();
                    newthread->SetKeyWnd(hwnd);
                    newthread->Config( g_pWebBrowserSaveAs->GetFilename(), 
                        g_pWebBrowserSaveAs->GetSaveAsType() );
                    newthread->StartThread();
                }
            }
            break;
        }
    }
    return CallNextHookEx(g_hHook, nCode, wParam, lParam); 
}

In our thread, we wait until the Internet Explorer Save As dialog is ready with filled data:

C++
switch(    ::WaitForSingleObject( m_hComponentReadyEvent, m_WaitTime) )
{
     ...
     if ( ::IsWindowVisible(m_keyhwnd) )
     {
         bSignaled = TRUE;
         bContinue = FALSE;
     }

     MSG msg ;
     while( PeekMessage(&msg, NULL, 0, 0, PM_REMOVE) )
     {
         if (msg.message == WM_QUIT)
         {
              bContinue = FALSE ;
              break ;
         }
         TranslateMessage(&msg);
         DispatchMessage(&msg);
     }
     ...
}

// relaunch our SaveAs class, but now everything is ready to play with
if (bSignaled)
{
    CSaveAsWebbrowser surrenderNow;
    surrenderNow.Config( GetFilename(), GetSaveAsType() );
    surrenderNow.UpdateSaveAs( m_keyhwnd );
}

// kill the thread, we don't care anymore about it
delete this;

We can now override the appropriate data:

C++
void CSaveAsWebbrowser::UpdateSaveAs(HWND hwnd)
{
    // editbox : filepath (control id = 0x047c)
    // dropdown combo : filetypes (options=complete page;
    //     archive;html only;txt) (control id = 0x0470)
    // save button : control id = 0x0001
    // cancel button : control id = 0x0002


    // select right item in the combobox
    SendMessage(GetDlgItem(hwnd, 0x0470), CB_SETCURSEL, 
        (WPARAM) m_nSaveType, 0);
    SendMessage(hwnd, WM_COMMAND, MAKEWPARAM(0x0470,CBN_CLOSEUP), 
        (LPARAM) GetDlgItem(hwnd, 0x0470));

    // set output filename
    SetWindowText(GetDlgItem(hwnd, 0x047c), m_szFilename);

    // Invoke Save button
    SendMessage(GetDlgItem(hwnd, 0x0001), BM_CLICK, 0, 0);  
}

In the code above, it is funny to remark that to select the kind of HTML we want (full HTML, archive, code only or text format), we not only select the adequate entry in the combo-box, we also send Internet Explorer a combo-box CloseUp notification. This is because that's what Internet Explorer has subscribed for to know we want this kind of HTML. This behavior is known by hints-and-trials.

Conclusion

This article describes a technique to gain access to the fully fledged Save As HTML feature exposed by Internet Explorer. I have never seen an article about this topic on the 'net, whereas it's easy to figure out that it is a compelling feature for developers building web applications. Files you may use from the source code provided are:

  • SaveAsWebBrowser.h, *.cpp: hook procedure; fill the dialog box data
  • SaveAsThread.h, *.cpp: auxiliary thread for synchronization with Internet Explorer

The application is just a simple MFC-based CHtmlView application embedding the web browser control.

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
France France
Addicted to reverse engineering. At work, I am developing business intelligence software in a team of smart people (independent software vendor).

Need a fast Excel generation component? Try xlsgen.

Comments and Discussions

 
GeneralRe: Modal Print Dialog Pin
Steph Rodriguez26-Nov-03 5:42
sussSteph Rodriguez26-Nov-03 5:42 
GeneralRe: Modal Print Dialog Pin
kkaps26-Nov-03 9:25
kkaps26-Nov-03 9:25 
GeneralRe: Modal Print Dialog Pin
Steph Rodriguez27-Nov-03 0:02
sussSteph Rodriguez27-Nov-03 0:02 
GeneralRe: Modal Print Dialog Pin
kkaps27-Nov-03 18:46
kkaps27-Nov-03 18:46 
Generalwhy use thread? (Some Delphi code) Pin
kmicic17-Nov-03 18:49
kmicic17-Nov-03 18:49 
GeneralRe: why use thread? (Some Delphi code) Pin
Stephane Rodriguez.17-Nov-03 20:51
Stephane Rodriguez.17-Nov-03 20:51 
GeneralA few more comments Pin
kmicic8-Dec-03 8:17
kmicic8-Dec-03 8:17 
GeneralError Msg: "The web page could not be saved to the selected location" Pin
banxuegang23-Aug-03 17:14
banxuegang23-Aug-03 17:14 
Thanks, it is really a cool article. It worked fine on my computer with Win2000 Server before. However, when I downloaded the latest pack/patches from www.microsoft.com, it gave me an error message "The web page could not be saved to the selected location" and no file could be saved. Do you have any idea about this error message and how to fix it?
Thanks again!



ban
GeneralRe: Error Msg: "The web page could not be saved to the selected location" Pin
Stephane Rodriguez.23-Aug-03 20:15
Stephane Rodriguez.23-Aug-03 20:15 
GeneralRe: Error Msg: "The web page could not be saved to the selected location" Pin
Anonymous24-Aug-03 17:35
Anonymous24-Aug-03 17:35 
GeneralRe: Error Msg: "The web page could not be saved to the selected location" Pin
Nelis Willers11-Oct-03 10:29
Nelis Willers11-Oct-03 10:29 
GeneralRe: Error Msg: "The web page could not be saved to the selected location" Pin
Stephane Rodriguez.11-Oct-03 10:50
Stephane Rodriguez.11-Oct-03 10:50 
GeneralRe: Error Msg: "The web page could not be saved to the selected location" Pin
exe2mht29-Mar-04 20:32
sussexe2mht29-Mar-04 20:32 
Questionurl2mht or some c+ code? Pin
docksudbbs20-Jun-03 7:10
docksudbbs20-Jun-03 7:10 
QuestionHow to change the output directory? Pin
hhdsq29-May-03 10:45
hhdsq29-May-03 10:45 
QuestionConvert to COM model? Pin
docksudbbs27-May-03 12:38
docksudbbs27-May-03 12:38 
AnswerRe: Convert to COM model? Pin
Anonymous27-May-03 19:41
Anonymous27-May-03 19:41 
GeneralIt is not Working in Win98 Pin
rashvi9-May-03 2:43
rashvi9-May-03 2:43 
GeneralRe: It is not Working in Win98 Pin
Stephane Rodriguez.9-May-03 3:50
Stephane Rodriguez.9-May-03 3:50 
QuestionHow do i use this code in ASP ? Pin
aruny2kprasad6-May-03 18:44
aruny2kprasad6-May-03 18:44 
AnswerRe: How do i use this code in ASP ? Pin
Stephane Rodriguez.6-May-03 19:44
Stephane Rodriguez.6-May-03 19:44 
GeneralNot working in WIN 98 Pin
Mayank Bansal30-Apr-03 4:03
Mayank Bansal30-Apr-03 4:03 
GeneralRe: Not working in WIN 98 Pin
Stephane Rodriguez.30-Apr-03 4:40
Stephane Rodriguez.30-Apr-03 4:40 
GeneralRe: Not working in WIN 98 Pin
Mayank Bansal30-Apr-03 5:16
Mayank Bansal30-Apr-03 5:16 
GeneralRe: Not working in WIN 98 Pin
Stephane Rodriguez.30-Apr-03 5:42
Stephane Rodriguez.30-Apr-03 5:42 

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.