home *** CD-ROM | disk | FTP | other *** search
- Program Illustrating_Fastwrit_Procedures;
-
- {$I Decl.ttt}
- {$I Fastwrit.TTT}
-
- begin
- clrscr;
- Box(20,1,60,5,yellow,black,2);
- Box(3,7,78,25,15,1,1);
- ClearText(4,8,77,24,white,blue);
- VertLine(33,9,11,white,blue,1);
- VertLine(47,9,11,white,blue,1);
- HorizLine(5,75,12,white,blue,2);
- WriteAT(74,1,white,black,'V 3.0');
- WriteCenter(2,green,black,'TECHNOJOCKS');
- WriteCenter(3,green,black,'TURBO');
- WriteCenter(4,green,black,'TOOLKIT');
- WriteVert(1,16,darkgray,black,'Technojock');
- WriteVert(80,16,darkgray,black,'Technojock');
- WriteBetween(33,47,9,white,blue,'Procedures');
- WriteBetween(33,47,10,white,blue,'&');
- WriteBetween(33,47,11,white,blue,'Functions');
- WriteAT(9,15,yellow,blue,'This is a demonstration of some of the procedures and functions');
- WriteAT(9,16,yellow,blue,'contained in the file Fastwrit.TTT. The screen is updated very');
- WriteAT(9,17,yellow,blue,'quickly using an inline procedure.');
- WriteAT(9,19,yellow,blue,'The procedures in Fastwrit.TTT include box and line drawing,');
- WriteAT(9,20,yellow,blue,'text centering on the screen or between two X coordinates,');
- WriteAT(9,21,yellow,blue,'vertical text writing and much more.');
- WriteAT(9,23,lightcyan,blue,'Other utilities in the TTT series include window management, menu');
- WriteAT(9,24,lightcyan,blue,'management, and fullscreen input routines.');
- Read(kbd,ch);
- Clrscr;
- Writeln('Run DemoTTT.com for the main demo program');
- Write('Technojocks Turbo Toolkit');
- end.
-