The MASM Forum

General => The Campus => Topic started by: mabdelouahab on December 04, 2014, 06:32:58 PM

Title: WM_LBUTTONDBLCLK
Post by: mabdelouahab on December 04, 2014, 06:32:58 PM
Hi
How can I receive WM_LBUTTONDBLCLK with WM_LBUTTONDOWN :biggrin:
Title: Re: WM_LBUTTONDBLCLK
Post by: dedndave on December 04, 2014, 06:49:40 PM
http://msdn.microsoft.com/en-us/library/windows/desktop/ms645606%28v=vs.85%29.aspx (http://msdn.microsoft.com/en-us/library/windows/desktop/ms645606%28v=vs.85%29.aspx)

QuoteOnly windows that have the CS_DBLCLKS style can receive WM_LBUTTONDBLCLK messages, which the system generates whenever the user presses, releases, and again presses the left mouse button within the system's double-click time limit. Double-clicking the left mouse button actually generates a sequence of four messages: WM_LBUTTONDOWN, WM_LBUTTONUP, WM_LBUTTONDBLCLK, and WM_LBUTTONUP.
Title: Re: WM_LBUTTONDBLCLK
Post by: mabdelouahab on December 05, 2014, 06:35:27 AM
Thank dedndave
Now is working  :t