What is STN_CLICKED

Started by Robert E. DeBolt, September 10, 2007, 01:06:49 AM

Previous topic - Next topic

Robert E. DeBolt

as in Function LOYALTY_PICTURE1_STN_CLICKED?

mikedoty

#1
STN_CLICKED Notification
The STN_CLICKED notification message is sent when the user clicks a static control that has the SS_NOTIFY style. The parent window of the control receives this notification message through the WM_COMMAND message.

Syntax

Copy Code

STN_CLICKED

    WPARAM wParam
    LPARAM lParam;
   
Parameters

wParam
The low-order word is a static control identifier. The high-order word is the notification message.
lParam
Handle to the static control.
Return Value

http://msdn2.microsoft.com/en-us/library/ms651161.aspx

No return value.

Robert E. DeBolt

Thank you, Mike, for the info.