WM_LBUTTONDBLCLK not coming ?
-
Greetings... I have a custom drawn window in a dialog box. In the window procedure I am not able to trap WM_LBUTTONDBLCLK, the message is not coming only. I am getting WM_ONLBUTTONDOWN ? Any suggestions on how to get WM_LBUTTONDBLCLK. Thanks in advance. Ritesh
-
Greetings... I have a custom drawn window in a dialog box. In the window procedure I am not able to trap WM_LBUTTONDBLCLK, the message is not coming only. I am getting WM_ONLBUTTONDOWN ? Any suggestions on how to get WM_LBUTTONDBLCLK. Thanks in advance. Ritesh
-
Greetings... I have a custom drawn window in a dialog box. In the window procedure I am not able to trap WM_LBUTTONDBLCLK, the message is not coming only. I am getting WM_ONLBUTTONDOWN ? Any suggestions on how to get WM_LBUTTONDBLCLK. Thanks in advance. Ritesh
Is the
CS_DBLCLKS
specified in the WNDCLASS.style of your control...? Just a thought :) "An expert is someone who has made all the mistakes in his or her field" - Niels Bohr -
Is the
CS_DBLCLKS
specified in the WNDCLASS.style of your control...? Just a thought :) "An expert is someone who has made all the mistakes in his or her field" - Niels BohrWell...CSDBLCLICKS in my wndclass during RegisterWindowEx solved the problem. Thannks for the suggestion Ritesh