How can I include/embed .*chm help file in application itself (not as separate file in output)? Can it be placed in "Resources.resx" and read from there? I tried this method but it seems that it doesn't work...
CodePudding user response:
Storing the chm in a resource is a bad idea and difficult to handle, deploy it as a plain file.
Changing and recompiling a CHM file is not an easy task without the associated project file (*.hhp). Therefore, the content is reasonably - but of course not completely - safe.
A user actually makes your software unusable by making changes to the installation path and help content. Updating the help topics must match the version of your app and is your responsibility.
If it meets your requirements you can think about a so-called web-based help. Upload your help to a server and add a web browser control to your application.
Old stuff, but have a look at a sample for Uncompressed help here too.