home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Education
/
collectionofeducationcarat1997.iso
/
COMPUSCI
/
TOT11.ZIP
/
TOTDEM11.ZIP
/
DEMFS2.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-11
|
577b
|
28 lines
Program DemoFastTwo;
{DEMFS2}
USES DOS,CRT,
totSYS, totINPUT, totFAST;
var
WasOn: boolean;
Dep : byte;
begin
Monitor^.SetCondensed;
Dep := Monitor^.Depth;
Mouse.Show;
Mouse.Confine(1,1,80,Dep); {tell mouse how far it can go}
ShadowTot^.SetShadowSize(2,2);
with Screen do
begin
Clear(31,' ');
ShadFillBox(2,2,40,Dep-10,65,2);
ShadFillBox(35,20,75,dep-3,112,1);
Writecenter(Dep,31,'Press any key to exit');
GotoXY(1,dep);
end;
Key.GetInput;
Mouse.Hide;
Monitor^.Set25;
end.