Click here to Skip to main content
6,295,667 members and growing! (12,245 online)
Email Password   helpLost your password?
General Programming » Programming Tips » General     Intermediate

How to use the res: protocol in Developer Studio

By Santosh Rao

A simple MFC demo application that demonstrates using the res: protocol to use resources in your applications
VC6, MFC, Dev
Posted:25 Mar 2000
Views:51,229
Bookmarked:13 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
22 votes for this article.
Popularity: 5.56 Rating: 4.14 out of 5

1
1 vote, 10.0%
2

3
3 votes, 30.0%
4
6 votes, 60.0%
5
  • 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.

    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

    About the Author

    Santosh Rao


    Member
    1993 started with Computers

    BE(Computer Science) and MS (Software Systems)

    Industry Experience: 10 Years

    C, C++, VC++(MFC), .NET, C#, MTS, Queuing, ASP.NET, AJAX, Java, J2EE, SunOne, JMS

    Banking, Insurance & Pension,Health Care

    Occupation: Architect
    Location: India India

    Other popular Programming Tips articles:

    Article Top
    You must Sign In to use this message board.
    FAQ FAQ 
     
    Noise Tolerance  Layout  Per page   
     Msgs 1 to 5 of 5 (Total in Forum: 5) (Refresh)FirstPrevNext
    GeneralGood article PinmemberBartosz Wojcik7:03 13 Jun '07  
    GeneralRes question.... Pinmembersomeone_stuggling_with_res!15:35 12 Apr '05  
    GeneralAll must read Microsoft KB#220830 Pinmemberrichiehere1:00 7 Oct '04  
    Generalres with DHTML Pinmemberone_eddie9:26 21 Feb '04  
    General"2110" Type Resources Also Work PinsussSantosh Rao0:54 29 Mar '00  

    General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

    PermaLink | Privacy | Terms of Use
    Last Updated: 25 Mar 2000
    Editor: Chris Maunder
    Copyright 2000 by Santosh Rao
    Everything else Copyright © CodeProject, 1999-2009
    Web13 | Advertise on the Code Project