CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Help files

  1. #1
    Guest

    Help files

    Hi,

    I have a .hlp file, and I want to simply add it to my application ( SDI ), Is there a function like ShowHelpFile("helpFile.hlp"); ??
    If not, how can I show it in my application ?

    Thanks in advance.



  2. #2
    Join Date
    Jul 1999
    Location
    Pasadena, CA - USA
    Posts
    351

    Re: Help files

    Hi,

    This Should 'Help'


    BOOL WinHelp( GetSafeHwnd(), _T("helpFile.hlp") ,HELP_CONTENTS, 0);




    Check the online documentation because there are a lot of options and ways to use this function.



    Regards,

    Paul Belikian

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