home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Unsorted BBS Collection
/
thegreatunsorted.tar
/
thegreatunsorted
/
programming
/
asm_programming
/
PAS_0493.ZIP
/
CURSRTST.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-04-22
|
312b
|
9 lines
program cursortest;
uses cursor1;
begin
writeln(cursor1.maxSize);
cursor1.setSize(cursor1.maxSize); readln; {block}
cursor1.setSize(0); readln; {hidden}
cursor1.setSize(cursor1.maxSize div 2); readln; {half}
cursor1.setSize(2); readln; {normal}
end.