Click here to Skip to main content
Email Password   helpLost your password?
  • Download demo project - 58 Kb
  • Download exeuctable - 12 Kb
  • Sample Image - Res.gif

    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.

    You must Sign In to use this message board.
     
     
    Per page   
     FirstPrevNext
    GeneralGood article
    Bartosz Wojcik
    7:03 13 Jun '07  
    Thanks!


    GeneralRes question....
    someone_stuggling_with_res!
    15:35 12 Apr '05  
    In the .net IDE, I have included the file "picture.gif" under a folder called "GFX" in the project tree. My understanding is that to get at the file using the res protocol, I could use the following:

    res://HPad.exe/HPad.Help.IEPreview.gif

    This doesn't appear to be working! Now in C# I could use reflection to get at the gifs, but I am embedding HTML (again - easy enough to get to) which then uses the embedded gif in it's source code. Effectively:

    <img src="res://HPad.exe/HPad.Help.IEPreview.gif">

    What am I doing wrong? After all, I don't want to keep having to create numbered trees, etc... in resource hackers just to check a simple change in my .exe...!

    Is this the only way?
    GeneralAll must read Microsoft KB#220830
    richiehere
    1:00 7 Oct '04  
    No message
    Generalres with DHTML
    one_eddie
    9:26 21 Feb '04  
    I use a DHTMLEdit ActiveX control.
    I set it't content by SetDocumentHTML function.
    but i can't show a gif image that is in the resources.
    i tried your code, doesn't work.

    why?
    General"2110" Type Resources Also Work
    Santosh Rao
    0:54 29 Mar '00  
    As mentioned in my article, please note that
    resources listed as "2110" also work.
    (I have checked this only in NT,but that should not
    be a constraint)


    Last Updated 26 Mar 2000 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2010