From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=0.2 required=5.0 tests=BAYES_00,INVALID_MSGID, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6bbb7a00b26fc6b9 X-Google-Attributes: gid103376,public From: dkusu@atc-1s.hac.com (David Kusuda) Subject: Re: Form Feed To Printer Date: 1995/03/29 Message-ID: <3lbvk0$1v0@hacgate2.hac.com>#1/1 X-Deja-AN: 100540728 distribution: world references: <3l35sr$1o4@toads.pgh.pa.us> organization: Guardian ATC - Hughes Aircraft Company reply-to: dkusu@atc-1s.hac.com newsgroups: comp.lang.ada Date: 1995-03-29T00:00:00+00:00 List-Id: In article 1o4@toads.pgh.pa.us, tore@lis.pitt.edu (Tore Joergensen) writes: >jcott@csupomona.edu wrote: > >: I am trying to figure out the ascii code so that I can send a >: line feed to the printer. > >: If anyone knows the Ascii Escape code, or anything else >: I can use so that I may send a form feed to the Printer, I would >: Appreicate it. > >Linefeed 10 16#0A# >Formfeed 12 16#0C# >CR 13 16#0D# >Escape 27 16#1B# You can also use the predefined ASCII package... Linefeed ASCII.LF Formfeed ASCII.FF CR ASCII.CR Escape ASCII.ESC Dave