Group: Mouse Input - Library: user32
Setting and retrieving the double-click time for the mouse
BOOL SetDoubleClickTime(
UINT uInterval // double-click interval
); DECLARE INTEGER SetDoubleClickTime IN user32 INTEGER wCount uInterval [in] Specifies the number of milliseconds that may occur between the first and second clicks
If the function succeeds, the return value is nonzero
Regular value for the DoubleClick time is 500 milliseconds. By setting this parameter to, say, 50 millisecond you can virtually disable the double click, because none can do it in such a short time.
Home