Help file (.CHM)

Hi,

Is it possible to link to a CHM file that is located in the same map as the solution
I want to open the CHM if I press on a button.

thx


Answer this question

Help file (.CHM)

  • wpfeffer

    We suggest you to use Systems.Windows.Forms.Help Class which can be used to display the help files in your windows application. This approach will help you in deploying the application where in it gives the advantage of client machines should be removing the dependency of having Word application.

    The Help class exposes ShowHelp method which can be used to Displays the contents of the Help file.

    Help.ShowHelp(Me, <helpfile name>)

    Please refer the sample and the below mentioned URL for additional information.

    http://msdn2.microsoft.com/en-us/library/system.windows.forms.help.aspx

    -Varun


  • Help file (.CHM)