Capture time when left button clicks

alanchinese

Regular
Joined
Jan 12, 2005
Messages
62
Hi,

I am wondering if I can make a simple program (command line, win form, or script) to capture the time when the mouse's left button is clicked (or any special combination, like CTRL + Left Click) anywhere in the window.

I might also want to extend this utility to record times in multiple clicks, and calculate the time difference between two clicks, etc.

Have anyone had done something like this?

Thanks for any inputs or ideas,
Zhong.
 
Code:
Public Class Form1

	Private Sub Form1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Click
		Me.Text = Now.ToString
	End Sub

End Class
 
Back
Top