Contents Index Topic Contents | ||
Previous Topic: PropSheet_GetTabControl Next Topic: PropSheet_PressButton |
PropSheet_IsDialogMessage
BOOL PropSheet_IsDialogMessage( HWND hDlg, LPMSG pMsg );Passes a message to a property sheet dialog box and indicates whether the dialog box processed the message. You can use this macro or send the PSM_ISDIALOGMESSAGE message explicitly.
- Returns TRUE if the macro has been processed, or FALSE if the macro has not been processed.
- hDlg
- Handle to the property sheet.
- pMsg
- Address of an MSG structure that contains the message to be checked.
Your message loop should use the PSM_ISDIALOGMESSAGE message with modeless property sheets to pass messages to the property sheet dialog box.
If the return value indicates that the PSM_ISDIALOGMESSAGE message was processed, it must not be passed to the TranslateMessage or DispatchMessage function.
See also PropertySheet
Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.