This website has been designed for use with the FireFox browser. Please use FireFox to view this page.
SetDoubleClickTime Reference in C#, VB.NET and VB6
Library:user32.dll
Visual Basic 6 definition
Declare Function SetDoubleClickTime Lib "user32.dll" (ByVal wCount As Long) As Long
Visual Basic .NET definition
Declare Function SetDoubleClickTime Lib "user32" (ByVal wCount As Integer) As Integer
C# definition
[DllImport("user32")]
public static extern int SetDoubleClickTime(int wCount)
Description
Platforms: Win 32s, Win 95/98, Win NT
SetDoubleClickTime sets the maximum amount of time allowed between successive mouse clicks for Windows to determine it as a double click. This function alters how Windows interprets a double click, so of course all applications as well as Windows itself will be affected. Be careful using this function, since the user usually sets the double click speed via Windows's Control Panel, so he/she may not expect a change in the double click speed. The function returns 1 if successful, or 0 if an error occured.
Parameters
Further Information:
For further information on Windows API functions such as these, and how to use these API's in your
C# and VB.NET applications, please refer to the book 'Network programming in .NET' (Buy at Amazon UK) (Buy at Amazon US)