Article ID: 86771 - Last Review: December 12, 2003 - Revision: 2.0

How to Invoke Search in Windows Help from Visual Basic Program

This article was previously published under Q86771

On This Page

Expand all | Collapse all

SUMMARY

You can invoke the Search feature of the Windows version 3.0 and 3.1 Help engine from a Visual Basic program. To do this, call the Windows API function WinHelp and pass the constant HELP_PARTIALKEY (&H105) as the wCommand parameter and any string that is a NON-valid topic as the dwData parameter.

MORE INFORMATION

Step-by-Step Example

  1. Start Visual Basic or from the File menu, choose New Project (ALT, F, N) if Visual Basic is already running. Form1 is created by default.
  2. In GLOBAL.BAS (or the .BAS file of your choice in Visual Basic version 2.0), add this code:
       Global Const HELP_PARTIALKEY = &H105
       ' Enter the following Declare statement entirely on one, single line.
       Declare Function WinHelp Lib "User"(ByVal hWnd As Integer,
          ByVal lpHelpFile As String, ByVal wCommand As Integer,
          ByVal dwData As Any) As Integer
    						
  3. In the Form1 Click event procedure, add this code:
       Sub Form_Click ()
          DummyVal$ = ""
          ' Enter the following function call entirely on one, single line:
          Temp% = WinHelp(Form1.hWnd, "c:\Windows\winhelp.hlp",
             HELP_PARTIALKEY, DummyVal$)
       End Sub
    						
  4. Press F5 to run this example. Click the form.

APPLIES TO
  • Microsoft Visual Basic 2.0 Standard Edition
  • Microsoft Visual Basic 3.0 Professional Edition
  • Microsoft Visual Basic 2.0 Professional Edition
  • Microsoft Visual Basic 1.0 Standard Edition
  • Microsoft Windows 3.0 Standard Edition
  • Microsoft Windows 3.1 Standard Edition
Keywords: 
KB86771
Retired KB ArticleRetired KB Content Disclaimer
This article was written about products for which Microsoft no longer offers support. Therefore, this article is offered "as is" and will no longer be updated.
 

Article Translations