Hallo Leute!
Bevor ich jetzt hier eine Heiratsvermittlung eröffne erstmal vielen Dank! Es funktioniert!
Und man muss dazu nicht mal die Mouse verschieben! Ein einfacher
SetCursorPos
reicht aus.
Hier der Code falls noch jemand das Problem hat:
Delphi-Quellcode:
procedure TForm1.CursorUpdate;
var p: TPoint;
begin
GetCursorPos(p);
SetCursorPos(p.X,p.Y);
end;
Gruß
e-gon