I have a windows forms project. In the current directory I have a Help folder with *.chm files. What is the easiest way to launch them from the application? How can I specif
You should use Help.ShowHelp to do this
var chmFile = "CHM/test.chm"; Help.ShowHelp(ctrl, chmFile);
by default ShowHelp will search file in the application path