vote up 0 vote down star

Hi,

I have an embedded HTML resource (helloworld.htm) inside my Visual Studio project. (Ie, I've added an HTML file to the project and set its properties to "Embedded Resource".

Within the same application I have a WebBrowser control.

I'd like to direct the WebBrowser control to display the HTML resource using the res:// protocol.

But I can't figure out the exact format needed to address an embedded resource using this style of URL.

Any ideas? Thanks!

flag

I've gotten this to work previously, but have forgotten the format for the URL w/ res:// protocol. – letthewookiewin Aug 10 at 12:33

2 Answers

vote up 0 vote down

res://project.exe/helloworld.htm

link|flag
vote up 0 vote down

webBrowser1.DocumentText = ResourceinWebBrowser.Properties.Resources.HTML.ToString();

Where webBrowser1 is the webBrowser control
ResourceinWebBrowser is your exe / Project Name.
'HTML' is the name of your embedded html resource

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.