CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jul 2006
    Posts
    285

    Create help File

    Hi
    I wanna ask if i can create a help file with c.
    To be more specific. I want to add a button that when user will push it it will return a help file with information about the application.
    Can someone tell me the steps?? What i need?? Need to write the help file in word?? And in what type?
    Any help will be great

  2. #2
    Join Date
    Dec 2003
    Location
    Syracuse, NY
    Posts
    400

    Re: Create help File

    I use HTMLHelp from Microsoft to create the help files in CHM format.

    Then you can add a button and in the button handler(parent window's WM_COMMAND, the button is the LOWORD of wParam) use ShellExecute with the lpOperation flag set to "open" and the lpFile parameter set to the help file to open the file.
    "Windows programming is like going to the dentist: You know it's good for you, but no one likes doing it."
    - Andre LaMothe

    DLL For Beginners(UPDATED)
    Please use CODE tags
    Rate me if I've helped.

  3. #3
    Join Date
    Nov 2003
    Location
    Belgium
    Posts
    8,150

    Re: Create help File

    I also use HTMLHelp.
    You can use any HTML editor you like and then use HTMLHelp to compile everything into a CHM file.
    Marc Gregoire - NuonSoft (http://www.nuonsoft.com)
    My Blog
    Wallpaper Cycler 3.5.0.97

    Author of Professional C++, 4th Edition by Wiley/Wrox (includes C++17 features)
    ISBN: 978-1-119-42130-6
    [ http://www.facebook.com/professionalcpp ]

  4. #4
    Join Date
    Jul 2006
    Posts
    285

    Re: Create help File

    Ok i will try it and let you know

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