Einzelnen Beitrag anzeigen

Neuni

Registriert seit: 25. Feb 2004
815 Beiträge
 
Delphi 7 Personal
 
#4

Re: Form schließen wenn Mauszeiger d.Form verläßt ?

  Alt 23. Jun 2004, 17:48
Die position bekommt man auch über:
Code:
var MausPos: TPoint;
    Pos1, Pos2 : integer;

begin
GetCursorPos(MausPos);
Pos1 := MausPos.x;
Pos2 := MausPos.y;
end;
Da brauchste doch keine Komponente!
  Mit Zitat antworten Zitat