home *** CD-ROM | disk | FTP | other *** search
- Program TestEchoDev;
- { This is a sample program that is used to test the Echo }
- { device set up in the EchoDev unit. The EchoDev unit }
- { interfaces a file variable called Echo. Any writes to this }
- { device will be written to both the screen and the printer. }
- Uses
- Crt, EchoDev, Printer;
-
- Begin
- ClrScr;
- GotoXY( 10,10 );
- Writeln( 'This is written to the Screen' );
- GotoXY( 10,5 );
- Writeln( Echo, 'This line is written to Screen and Printer' );
- Writeln( LST, 'This is on the printer only.' );
- Readln;
- End.
-