home *** CD-ROM | disk | FTP | other *** search
- {$I COLOR.INC}
- {$I WINDMNGR.INC}
- var ch:char;
- j:integer;
- begin
- initialize;
- SetWindow(1,5,5,75,20,10,31,2,0,'TEST WINDOW',12,10,2);
- SetWindow(2,15,10,60,24,31,78,2,1,'TEST WINDOW 2',143,31,2);
- SetWindow(3,1,1,40,15,1,64,6,0,'TEST WINDOW 3',12,47,6);
- open(1);
- for j:=1 to 100 do write('Window Manager II ');
- repeat until keypressed;
- read(kbd,ch);
- open(2);
- repeat until keypressed;
- read(kbd,ch);
- open(3);
- repeat until keypressed;
- read(kbd,ch);
- remove(3);
- end.