View previous topic :: View next topic |
Author |
Message |
lacoe1 Beginner
Joined: 24 Feb 2005 Posts: 33 Topics: 17
|
Posted: Fri Mar 11, 2005 5:17 pm Post subject: Carraige control |
|
|
Can I move '+' to the first byte in my report of 133 characters.
FD PRINT-FILE
LABEL RECORDS ARE STANDARD
DATA RECORD IS PRINT-REC.
01 PRINT-REC.
03 CARRIAGE-CTL-CHAR PIC X.
03 PRINT-LN PIC X(132).
------------------------------------------------------
Carriage Controls
1 ==> Top-of-page is 1 in column 0.
blank ==> Advance 1 line is blank in column 0.
0 ==> Advance 2 lines is 0 in column 0.
- ==> Advance 3 lines is "-" in column 0. |
|
Back to top |
|
 |
superk Advanced

Joined: 19 Dec 2002 Posts: 684 Topics: 5
|
Posted: Fri Mar 11, 2005 6:05 pm Post subject: |
|
|
Yes.
Plus (+) suppresses the line feed, and is usually the overstrike control. |
|
Back to top |
|
 |
|
|