Download demo project - 58 Kb
Download exeuctable - 12 Kb

Introduction
A few days back I heard about a protocol called as the res: protocol in a discussion group. I was soon checking it as to what it meant and how to use, and it had a solution for me to use in my project. My application displays an HTML start page, which I used to un-cleverly extract from my executable before displaying to the user (I didn't intend the user to modify this HTML page afterall). The clean answer to this was to use the res protocol (Mind it this requires IE 4+, which was not a problem for me).
Now to the details. The resprotocol is quite similar to the http://, ftp:// etc protocols. You might have seen quite a few times this protocol being automatically executed by IE when it has an error. (Eg: The Page not found and other error pages are actually HTML pages in SHDOCLC.DLL displayed by IE using the resprotocol). The about box in IE is also an HTML page in the SHDOCLC.DLL displayed using the ShowHTMLDialog
function exposed by IE SDK.
You could take a quick peek in SHDOCLC.DLL by opening it as a resource in Microsoft Developer Studio.
A demonstration Application
The enclosed sample shows a quick peek into using the RES dll and showing the about box using the res protocol and the ShowHTMLDialog
function.
The sample was developed in VC Ver 6.0 and NT 4.0 (Service Pack 5). VC Ver 5.0 onwards supports a new resource type called HTML for HTML file types. In the HTML View class OnInitialUpdate
override we call the LoadFromResource
to load the start HTML page specified by the resource id. This HTML page contains a GIF file (image7.gif - an html resource that has to be displayed). This resource has to be added in to your resource file under the numeric id 2110 and not "2110" under its file name and that in this example happens to be "image7.gif". (I actually imported this file using import and then copied it into custom numeric resource id 2110.)
Similary I added the About HTML Start Page. Now a quick tip on invoking the HTML About Dialog using this resource HTML id.
To display an HTML dialog we could use then use ShowHTMLDialog
function declared in <mshtmhst.h>. This function has the following declaration
HRESULT ShowHTMLDialog(
HWND hwndParent,
IMoniker *pMk,
VARIANT *pvarArgIn,
WCHAR *pchOptions,
VARIANT *pvarArgOut
);
where hwndParent
is your parents HWND
and pMk
is a pointer to the IMoniker
interface pointing to your source URL and can be created using the CreateURLMoniker
function.
HRESULT CreateURLMoniker(
IMoniker *pmkContext,
LPWSTR szURL,
IMoniker **ppmk
);
This function is wrapped for ease in to the CHtmlAbout
dialog class.