Call the Windows Help Search Dialog Box from ApplicationLast reviewed: November 2, 1995Article ID: Q86268 |
The information in this article applies to:
In the Microsoft Windows environment, an application can invoke the Search dialog box of the Windows Help application independent of the main help window. For example, many applications have an item like "Search for Help on" in their Help menus. An application can invoke the Search dialog box via the WinHelp function by specifying HELP_PARTIALKEY as the value for the fuCommand parameter and by specifying a pointer to an empty string for the dwData parameter. The following code demonstrates how to call the Windows Help Search dialog box from an application: LPSTR lpszDummy, lpszHelpFile; // Allocate memory for stringslpszDummy = malloc(5); lpszHelpFile = malloc(MAX_PATH);
// Initialize an empty stringlstrcpy(lpszDummy, "");
// Initialize the help filenamelstrcpy(lpszHelpFile, "c:\\windows\\myhelp.hlp");
// Call WinHelp functionWinHelp(hWnd, lpszHelpFile, HELP_PARTIALKEY, (DWORD)lpszDummy);
|
Additional reference words: 3.10 3.50 4.00 95
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |