CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 1999
    Location
    Batangas, Philippines
    Posts
    7

    URGENT: Need Help Loading HELP file create in HTML Help Workshop



    I am currently working on VB application where I have to laod a HELP file created in HTML Help workshop. Can I anyone give some idea on how I would able to do that. Can't any info in VB help.

  2. #2
    Guest

    Re: URGENT: Need Help Loading HELP file create in HTML Help Workshop

    Here is the code I use:

    Declare Function htmlhelp Lib "hhctrl.ocx" Alias "HtmlHelpA" (ByVal hwnd As Long, ByVal lpHelpFile As String, ByVal wCommand As Long, ByVal dwData As Long) As Long
    Public Const HH_HELP_CONTEXT = &HF


    Dim hwnd As Long
    hwnd = htmlhelp(frm.hwnd, App.HelpFile, HH_HELP_CONTEXT, eID)

    - Alex ([email protected])



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