Re: Set mouse cursor pos


Posted by Jean Claude Servaye on January 30, 2001 at 19:18:18:

In Reply to: Set mouse cursor pos posted by Adrian on January 30, 2001 at 10:13:49:

Var
P : TPoint;
begin
P.X := 10;
P.Y := 30;
P := ClientToScreen(P); //convert to screen coordinates
SetCursorPos(P.X,P.Y);
end;