P.T.A.M. Administrator

Joined: 08 Oct 2003 Posts: 752 Location: Greece
|
Posted: Oct 10th, 2003 08:04 AM Post subject: Set double click time |
|
|
Add a command button (Command1) and a text box (Text1). The double click time will be set to the value you enter into the text box.
| Code: | Private Declare Function SetDoubleClickTime Lib "user32" (ByVal wCount As Long) As Long
Private Sub Command1_Click()
SetDoubleClickTime Text1.Text
End Sub |
_________________ No one is completely useless. They can at least be an example of what to avoid. |
|