R Robertico Oct 2, 2009 #1 Is it possible to embed a HTML-page to my application and display it in a webbrowser control ? Robertico
Is it possible to embed a HTML-page to my application and display it in a webbrowser control ? Robertico
F Family Tree Mike Oct 2, 2009 #2 Robertico said: Is it possible to embed a HTML-page to my application and display it in a webbrowser control ? Robertico Click to expand... Yes. Add an html page to your project, and set the build action to "Copy if newer". Then in your form app, use a line: webBrowser1.DocumentText = File.ReadAllText("somefile.htm"); Mike
Robertico said: Is it possible to embed a HTML-page to my application and display it in a webbrowser control ? Robertico Click to expand... Yes. Add an html page to your project, and set the build action to "Copy if newer". Then in your form app, use a line: webBrowser1.DocumentText = File.ReadAllText("somefile.htm"); Mike
R Robertico Oct 2, 2009 #3 Yes. Add an html page to your project, and set the build action to "Copy if newer". Then in your form app, use a line: Click to expand... how do I add the html page to my project? Robertico
Yes. Add an html page to your project, and set the build action to "Copy if newer". Then in your form app, use a line: Click to expand... how do I add the html page to my project? Robertico
R Robertico Oct 2, 2009 #4 how do I add the html page to my project? Received errors... but fixed now. Thanks !! Robertico