View previous topic :: View next topic |
Author |
Message |
lacoe1 Beginner
Joined: 24 Feb 2005 Posts: 33 Topics: 17
|
Posted: Tue Mar 15, 2005 4:53 pm Post subject: Moving + to Carriage Ctl |
|
|
What statement should I use to move '+' to Carriage Control. Is there
any reserved word I should use. Any help is appreciated.
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.
+==> Plus (+) suppresses the line feed, and is usually the overstrike control. |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Wed Mar 16, 2005 8:38 am Post subject: |
|
|
lacoe1,
What is stopping you from coding like this?
Code: |
MOVE '+' TO CARRIAGE-CTL-CHAR
|
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
 |
SureshKumar Intermediate
Joined: 23 Jan 2003 Posts: 211 Topics: 21
|
Posted: Wed Mar 16, 2005 12:27 pm Post subject: |
|
|
Lacoe1,
Try WITH NO ADVANCING phrase. refer to manuals for more information. |
|
Back to top |
|
 |
|
|