Ruhig Blut...Alles kein Problem:
Delphi-Quellcode:
P := ScreenToClient(Point(Form1.Left,Form1.Top));
P.X := 0 - P.X;
P.Y := 0 - P.Y;
Label13.Caption := IntToStr(P.X);
Label14.Caption := IntToStr(P.Y);
Achso: var P : TPoint
Diese paar Zeilen sagen dir, wie breit und wie hoch der Randbereich von deinem Fenster sind.
Also
ClientLeft := Form1.Left + P.X
ClientTop := Form1.Top + P.Y
Zusätzlich gibts auch noch ClientToScreen, ClientToParent, und umgedreht
Einfach mal in die Hilfe Schauen