In my app I have a WebBrowser element.
I would like to load a local file in it.
I have some questions:
- Where to place the HTML file (so that it will also be installed if a user executes the setup)
- how to reference the file? (e.g. my guess is the user's installation folder would not always be the same)
EDIT
I've added the HTML file to my project.
And I have set it up so that it gets copied to output folder.
When I check it it is present when run: \bin\Debug\Documentation\index.html
However when I do the following I get a 'Page cannot be displayed' error in the webbrowser element.
I use the following code to try to display the HTML file in the Webbrowser.
webBrowser1.Navigate(@".\Documentation\index.html");