|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| prsht.h
| Unicode
| No
| Platform Notes
| None
|
|
|
PSM_ISDIALOGMESSAGE
The PSM_ISDIALOGMESSAGE message passes a message to a property sheet dialog
box and indicates whether the dialog processed the message. You can send the
PSM_ISDIALOGMESSAGE message explicitly or by using the PropSheet_IsDialogMessage macro.
PSM_ISDIALOGMESSAGE
wParam = 0;
lParam = (LPARAM)pMsg;
Parameters
pMsg
Pointer to a MSG structure that contains the message to be checked.
Return Values
If the message has been processed, the return value is TRUE.
If the message has not been processed, the return value is FALSE.
Remarks
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 message was processed, it must not be
passed to the TranslateMessage or DispatchMessage function.
See Also
DispatchMessage, MSG, PropertySheet, PropSheet_IsDialogMessage, TranslateMessage
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|