call and run html file inside dll

iknowyou

Active member
Joined
Jun 14, 2011
Messages
37
Programming Experience
1-3
How can I run or execute a html file that inside the DLL file? Please help. Thanks
 
Copy-paste (or drag-drop) the html file into the project resources of the class library, set the resources access modifier to Public. To load the document in a webbrowser:
WebBrowser1.DocumentText = ClassLibrary1.My.Resources.document
 
Back
Top