CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Mar 2000
    Posts
    292

    Creating Help Files

    Hi.

    We are developing an app, and we have Help as one of the main menu options. We are about to start building our Help files. Our Help is just a simple one, with a main form with links to details on how our app can be used, maybe some term definitions, and with links to other files, but not that complex as that of VB's help with Index or Search options. We would also like to learn how to create a Help message/info which will be activated upon a click of a command button on a form. Does anyone here know how to start creating a Help system, or at least point me to a site/thread where I can get ideas? Thanks in advance!


  2. #2
    Join Date
    May 2001
    Location
    Russia
    Posts
    200

    Re: Creating Help Files

    You have two way to create help.
    1. Create HLP or CHM file and use ContextHelpID properties of the any object in your project. But for this you need only ine file for all help information.
    2. You can create your help system and write code to view this information. This way more flexible, but need more time for creating.

    If you have any question about this subject - write me.

    Andy Tower

  3. #3
    Join Date
    Jul 2000
    Location
    Milano, Italy
    Posts
    7,726

    Re: Creating Help Files

    Have a look here:
    http://codeguru.com/cgi-bin/bbs/wt/s...age=&view=&sb=

    Special thanks to Lothar "the Great" Haensler, Tom Archer, Chris Eastwood, TCartwright,Bruno Paris
    and all the other wonderful people who made and make Codeguru a great place.
    Come back soon, you Gurus.

    The Rater
    ...at present time, using mainly Net 4.0, Vs 2010



    Special thanks to Lothar "the Great" Haensler, Chris Eastwood , dr_Michael, ClearCode, Iouri and
    all the other wonderful people who made and make Codeguru a great place.
    Come back soon, you Gurus.

  4. #4
    Join Date
    Mar 2000
    Posts
    292

    Re: Creating Help Files

    Thanks for replying. I read in a book that you still need to compile your Help files. An older book on VB4.0 mentions a file called HC.EXE but when I looked for this file in my computer, none was found. I'm using VB6.0. Then a newer book refers to a program called the Help Workshop, which is included in the Microsoft Visual Studio 6.0 Tools. When I looked for this program in my computer in the said group, I didn't find it. Why? Isn't this supposed to be included upon VB installation? I have already created a sample .RTF Help file by following book samples. How can I compile this if I don't have both? Thanks!


  5. #5
    Join Date
    Jul 2000
    Location
    Milano, Italy
    Posts
    7,726

    Re: Creating Help Files

    look at answers here:
    http://codeguru.com/cgi-bin/bbs/wt/s...&sb=&category=

    Special thanks to Lothar "the Great" Haensler, Tom Archer, Chris Eastwood, TCartwright,Bruno Paris
    and all the other wonderful people who made and make Codeguru a great place.
    Come back soon, you Gurus.

    The Rater
    ...at present time, using mainly Net 4.0, Vs 2010



    Special thanks to Lothar "the Great" Haensler, Chris Eastwood , dr_Michael, ClearCode, Iouri and
    all the other wonderful people who made and make Codeguru a great place.
    Come back soon, you Gurus.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured