PlanetSquires Forums

Support Forums => Other Software and Code => Topic started by: Robert E. DeBolt on September 10, 2007, 01:06:49 AM

Title: What is STN_CLICKED
Post by: Robert E. DeBolt on September 10, 2007, 01:06:49 AM
as in Function LOYALTY_PICTURE1_STN_CLICKED?
Title: Re: What is STN_CLICKED
Post by: mikedoty on September 10, 2007, 08:26:37 AM
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.
Title: Re: What is STN_CLICKED
Post by: Robert E. DeBolt on September 10, 2007, 05:39:49 PM
Thank you, Mike, for the info.