There is a feature in sysinternal's process explorer that allows a crosshair to be dragged from the application to a control in any other application you are running and highlights said control. Does anyone know how this was achieved or if there is a .NET/C++ library out there that can be reused?

link|improve this question

It's the same idea as in Spy++, too, right? – lc. Apr 3 '09 at 14:41
As well as the info tool from AutoIt. It's funny how similar these tools look. I almost wonder if there's some code being shared around for this. – AaronLS Apr 3 '09 at 15:00
feedback

1 Answer

up vote 4 down vote accepted

Using Win32 API

  • GetCursorPos: to get the cursor position (maybe .NET has its own function to do that)
  • WindowFromPoint: to get the handle of the window from a specific point in the screen

more info

link|improve this answer
That's all there is to it; I wonder why this hasn't been accepted yet. – John Dibling Apr 3 '09 at 15:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.