How to Set Mouse Double Click Time
Posted on January 5, 2009
1 2 3 4 5 6 7 8 9 10 11 | 'System & API - How to Set Mouse Double Click Time Option Explicit Declare Function SetDoubleClickTime Lib "user32" (ByVal wCount As Long) As Long Private Sub Form_Load() 'Replace the '500' below with the time (in milliseconds) that you want to 'assign to the mouse double click. 1000 milliseconds=1 second. Call SetDoubleClickTime(500) End Sub |