yes, indeed we can use Control.Move event to know when a control moves. But, what if the control moves in screen because we move the form Yes, we can solve this by adding event handler to the form's Move event. But again, what if the control has multiple level of parenting i.e. control is contained within a panel then contained within a form, and the panel is moved Basically, I wanna know how to detect if a control moves in screen even a pixel. Any idea

Detect control movement in screen ???
Kristian PD
D.Hamilton
H.Ashok
tvance929
Venkataramana
dhika
What I want could be achieved by using Timer, to get the control position in screen using PointToScreen function. However, I dont wanna perform unnecessary step when the control is not moving at all in screen coordinate.
Well, any other ideas are really welcome.