home *** CD-ROM | disk | FTP | other *** search
- identification division.
- program-id. test.
- environment division.
- data division.
- working-storage section.
- COPY testfmt.
- COPY ufco03.
- procedure division.
- anf-section.
- * normal output
- anf-000.
- COPY testfm1.
- anf-001.
- move 0 to SM.
- move 1 to FKZ.
- move "testfmt " to FMT.
- call "UNIF" using FKZ FMT fld0 RET SM Daten.
- anf-002.
- * change attribute of field fld1
- move 1 to SM.
- move 20 to FKZ.
- move 15 to RET.
- call "UNIF" using FKZ FMT fld0 RET SM Daten.
- move 3 to FKZ.
- call "UNIF" using FKZ FMT fld0 RET SM Daten.
- anf-003.
- * cange textattribut and frame attribut
- move 21 to FKZ.
- move 15 to RET.
- call "UNIF" using FKZ FMT fld0 RET SM Daten.
- move 22 to FKZ.
- move 15 to RET.
- call "UNIF" using FKZ FMT fld0 RET SM Daten.
- move 2 to FKZ.
- call "UNIF" using FKZ FMT fld0 RET SM Daten.
- anf-009.
- stop run.
-