alanchinese Posted January 19, 2008 Posted January 19, 2008 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. Quote
Machaira Posted February 8, 2008 Posted February 8, 2008 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 Quote Here's what I'm up to.
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.