How to Invoke Search in Windows Help from Visual Basic Program

ID: Q86771


The information in this article applies to:
  • Microsoft Visual Basic Standard and Professional Editions for Windows, versions 2.0, 3.0
  • Microsoft Visual Basic programming system for Windows, version 1.0
  • Microsoft Windows versions 3.0, 3.1


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.


Additional query words: 2.00

Keywords :
Version :
Platform :
Issue type :


Last Reviewed: September 1, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.