CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 7 of 7

Threaded View

  1. #1
    Join Date
    Jul 2008
    Posts
    50

    How to record mouse events on other objects?

    Dear all,

    Assume we have 3 buttons from an application: A, B, and C.

    Now I want to record the mouse events on the buttons using another application. For example, if the user clicked button A first, then C, then B, the application should give us a report like the following:

    clicked A
    clicked C
    clicked B

    !!!NOTE: The requirement is that you cannot alter the code of the buttons because it was developed by someone else.

    This problem bothered me a lot and I still cannot find a way to do it.
    Could someone help me?

    Thanks in advance!
    Last edited by kagohaik; April 3rd, 2009 at 02:01 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured