Search code examples
vb.nethtml-help-workshop

how do i create help files in vb.net?


can I create help files in html help and add it to vb.net or are there another way to implement help system on vb.net I want to create custom help files


Solution

  • The .CHM file format (Compiled HTML) is the current format used for help files wit Winforms/WPF .Net application.

    There are a variety of ways to create CHM files. I'd suggest checking out this question for more details on how to accomplish this.

    For ASP.Net applications, you would need to generate your own help pages.

    Tutorials

    Creating help files and linking them to a VB application

    MSDN Documents