home *** CD-ROM | disk | FTP | other *** search
- procedure siderhlp;
- begin
- window(3,9,54,23);
- clrscr;
- writeln('SIDER will print an ASCII or PRN file sideways on');
- writeln('an EPSON FX/LX printer. The following options ');
- writeln('are available:');
- txt(9);write('VIEW - ');txt(3);
- writeln('toggles writing to screen during printing');
- writeln('on or off.');
- writeln;
- txt(9);write('SIZE - ');txt(3);
- writeln('provides menu selection of three available');
- writeln('print sizes: NORMAL(9 cpi/6 lpi), SHORT');
- writeln('(12 cpi/6 lpi), and SMALL(12 cpi/10 cpi)');
- writeln;
- txt(9);write('PRINT - ');txt(3);
- writeln('enter path/drive and file to print');
- writeln;
- txt(9);write('HELP -');txt(3);
- writeln('this HELP screen');
- writeln(' Press RETURN to continue...');
- read(kbd,ch);
- clrscr;
- window(1,1,80,25);
- end;
-