README.md
December 5, 2022 ยท View on GitHub
Description
This code sets the mouse position on the screen
More Info
| Submitted On | |
| By | ComaBlack |
| Level | Beginner |
| User Rating | 3.7 (11 globes from 3 users) |
| Compatibility | Delphi 5, Delphi 4, Pre Delphi 4 |
| Category | Coding Standards |
| World | Delphi |
| Archive File |
API Declarations
ComaBlack
coma_black_666@hotmail.com
Source Code
SET the cursor position
var
x, y: integer; (* Position to set for the mouse *)
begin
(*These are only numbers examples*)
x := 10;
y := 60;
setcursorpos(x,y);
end;