|
-
Jun 12th, 2001, 08:39 AM
#1
Thread Starter
Junior Member
Detect double click
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
-
Jun 12th, 2001, 08:47 AM
#2
Frenzied Member
There are WM_LBUTTONDBLCLK & WM_RBUTTONDBLCLK
-
Jun 12th, 2001, 08:49 AM
#3
Frenzied Member
I forgot to give you the values
VB Code:
Public Const WM_RBUTTONDBLCLK = &H206
Public Const WM_LBUTTONDBLCLK = &H203
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|