home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 8
/
CDASC08.ISO
/
NEWS
/
554
/
JUILLET
/
SETMOUSE.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-10-07
|
876b
|
26 lines
{─ Fido Pascal Conference ────────────────────────────────────────────── PASCAL ─
Msg : 469 of 478
From : Kelly Small 1:114/36.0 13 Jul 93 09:30
To : James Park
Subj : The Mouse
────────────────────────────────────────────────────────────────────────────────
JP> Hi,
JP>
JP> Can anyone help me create a procedure that I can call and set the cursor t
JP> certain character.
JP>
JP> ie. SetMouseCursor(ord('?'));}
Procedure SetMousecursor(Ctype:Byte);
Var Regs : Registers;
Begin
With Regs Do
Begin
ax := 10;
bx := 0;
cx := $FF00;
dh := $08;
dl := Ctype;
Intr($33,Regs);
End;
End;