Article ID: 141724 - Last Review: November 21, 2006 - Revision: 4.3 Context-Sensitive Help in a CDialog ObjectThis article was previously published under Q141724 This is the 32-bit version of this sample. SUMMARY The DLGHLP sample illustrates implementing
context-sensitive help in a CDialog object. The following files are available for download from the Microsoft Download Center: Dlghlp32.exe (http://download.microsoft.com/download/vc50pro/sample6/1/win98/en-us/dlghlp32.exe) For additional information about how to download Microsoft Support files, click the following article number to view the article in the Microsoft Knowledge Base: 119591
(http://support.microsoft.com/kb/119591/EN-US/
)
How to Obtain Microsoft Support Files from Online Services
Microsoft scanned this file for viruses. Microsoft used the most
current virus-detection software that was available on the date that the file
was posted. The file is stored on security-enhanced servers that help to
prevent any unauthorized changes to the file.
Dlghlp32.exe was archived as a self-extracting file using the PKware file- compression utility. The archived file contains subdirectories, and therefore, the -d switch needs to be used when decompressing the file to disk. MORE INFORMATION The DLGHLP32 sample implements context-sensitive help in a
dialog box by overriding CWnd::OnHelpInfo and CWnd::OnContextMenu in the dialog
class to handle the WM_HELP and WM_CONTEXTMENU messages. WM_HELP and
WM_CONTEXTMENU are new Win32 messages that are received by the active window
when Help is requested. DLGHLP32 uses the information provided to these
handlers to call ::WinHelp with the appropriate parameters. DLGHLP32 includes two dialog boxes, each with a number of controls in them. The user is able to set the focus to a particular control and, by pressing F1, right-clicking, or using the ? (question mark) icon to bring up help that is specific for that control. Several of the control IDs are used in both dialog boxes. For example, each dialog box contains a radio button with the ID of IDC_RADIO1. To allow a unique help context value to be generated for each control, the ID of each dialog box is used as a base and is added to the ID of the control. ::WinHelp provides two new help commands for handling WM_HELP and WM_CONTEXTMENU. They are HELP_WM_HELP and HELP_CONTEXTMENU, respectively. In both cases, an array mapping control IDs to help contexts is passed in the dwData parameter. DLGHLP32 defines two of these arrays, one for each dialog box class. This facilitates generating unique help context for controls in both dialogs, even if the control IDs are the same. DLGHLP32 is based on an AppWizard-generated application. Files included with the sample which are directly related to implementing context- sensitive help in a dialog box are:
APPLIES TO
| Article Translations
|
Back to the top
