|
-
March 26th, 1999, 04:41 AM
#1
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.
-
April 10th, 1999, 06:28 PM
#2
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|