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

Thread: HTML Help

  1. #1
    Join Date
    Dec 2002
    Posts
    1

    Question HTML Help

    The method used in VisualC++6.0 can not be used in VisualC++.NET. Who can give me a sample?

  2. #2
    Join Date
    Dec 2001
    Location
    United Kingdom
    Posts
    82
    I believe this is what you mean. I hope it helps. Basically you just have to ensure you use HtmlHelp from the current namespace such as:

    CString szPath("Helpfile.chm::/Welcome.htm");

    if( ::HtmlHelp(this->m_hWnd, szPath, H_DISPLAY_TOPIC,0) == NULL)
    ::HtmlHelp(this->m_hWnd, szPath, HH_HELP_FINDER, 0 );


    zebbedi

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