Is there any way using GetAsyncKeyState to detect a double click of the mouse. I know that the constant vbLeftButton and vbRightButton exist for single clicks but is there anything for a double click?
Ryan
Printable View
Is there any way using GetAsyncKeyState to detect a double click of the mouse. I know that the constant vbLeftButton and vbRightButton exist for single clicks but is there anything for a double click?
Ryan
There are WM_LBUTTONDBLCLK & WM_RBUTTONDBLCLK
I forgot to give you the values
VB Code:
Public Const WM_RBUTTONDBLCLK = &H206 Public Const WM_LBUTTONDBLCLK = &H203