by Travis Holtzhauser (1 Submission)
Category: Windows API Call/Explanation
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Fri 19th October 2001
Date Added: Mon 8th February 2021
Rating:
(1 Votes)
Controls the properties of the mouse. Allows you to change the double click speed. Allows you to make the mouse left or right handed.
API Declarations
Private Declare Function SetDoubleClickTime Lib "User32.dll" (ByVal wCount As Long) As Long
SwapMouseButton 1
End Sub
Private Sub Command2_Click()
SwapMouseButton 0
End Sub
Private Sub Command3_Click()
End
End Sub
Private Sub Command4_Click()
Dim Time As Long
Time = Text1.Text
SetDoubleClickTime (Time)
End Sub
Private Sub Frame1_DblClick()
MsgBox "Successful Double Click"
End Sub
No comments have been posted about Controls the properties of the mouse. Allows you to change the double click speed. Allows you to ma. Why not be the first to post a comment about Controls the properties of the mouse. Allows you to change the double click speed. Allows you to ma.