home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Education
/
collectionofeducationcarat1997.iso
/
COMPUSCI
/
TOT11.ZIP
/
TOTDEM11.ZIP
/
DEMWI2.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-11
|
415b
|
24 lines
program DemoWindowTwo;
{DEMWI2 - a moveable window}
Uses DOS,CRT,
totFAST, totINPUT, totWIN;
var
MyWindow: MoveWinOBJ;
K: word;
X,Y: byte;
begin
Screen.Clear(white,'░'); {paint the screen}
with MyWindow do
begin
Init;
Draw;
Screen.WriteLn('Hello Mum');
Repeat
WinGetKey(K,X,Y);
until (K = 600) or (K= 27);
Done;
end;
end.