News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

IE's res Protocol

Started by UtillMasm, April 01, 2009, 05:22:32 AM

Previous topic - Next topic

UtillMasm

res://c:\Help2Viewer.exe/navfail.htm

res://c:\Help2Viewer.exe/donkey.jpg

How to use these in GoASM?

donkey

The res// protocol is for resource based HTML pages, you would define them in an RC file like this:

navfail.htm RT_HTML DISCARDABLE "navfail.htm"

GoRC is capable of compiling it into a RES file.

Once you have done that use the resource identifier (on the left) as the web page name and pass it to either a web browser control or IE directly in the following format:

res://c:\path\application.exe/navfail.htm
"Ahhh, what an awful dream. Ones and zeroes everywhere...[shudder] and I thought I saw a two." -- Bender
"It was just a dream, Bender. There's no such thing as two". -- Fry
-- Futurama

Donkey's Stable