vote up 4 vote down star
3

I'm trying to show a custom hint in a TWinControl but I can't figure out how to get it's position.

Using position 0,0 shows the hint on the top of my screen (outside the window) so I guess it must be the position of the control on the screen.

Edit:

I've found the TControl Property ClientOrigin which returns what I've expected, is it correct to use ClientOrigin.X and ClientOrigin.Y?

flag

1 Answer

vote up 13 vote down check

TControl.ClientToScreen gives you the screen coordinates for a given point within the control.

lPoint := Panel1.ClientToScreen(Point(0,0));
Label1.Caption := Format('Screen: %d, %d', [lPoint.X, lPoint.Y]);
link|flag
+1 for beïng 2 seconds faster than me ;-). – Gamecat Nov 14 '08 at 13:10
I'll take it! :) – Bruce McGee Nov 14 '08 at 13:14

Your Answer

Get an OpenID
or

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