Registriert seit: 18. Aug 2004
Ort: Brackenheim VS08 Pro
2.876 Beiträge
|
Re: Rahmenwahl und Cursorstandpunkte
1. Apr 2005, 11:44
Oder auch:
Delphi-Quellcode:
var RelPosition: TPoint;
begin
RelPosition := ScreenToClient(Mouse.CursorPos); //Methode von Form1, sonst Form1.ScreenToClient
Label1.Caption := Format('%d , %d',[RelPosition.X, RelPosition.Y]);
end;
Sebastian Moderator in der EE
|