home *** CD-ROM | disk | FTP | other *** search
- * MF Professional Cobol/ VS Cobol
- * ufco024.cbl - generic example
- identification division.
- program-id. test.
- environment division.
- data division.
- working-storage section.
- * standard include file
- COPY UFCO02.
- * include file for <testfmt>
- COPY testfmt.
- procedure division.
- anf-section.
- anf-001.
- * initialize mouse
- call "MSON".
- * function identifier
- move 1 to FKZ.
- * cursor position
- move 0 to SM.
- * shadow attribute
- move 112 to RET.
- * format name
- move "testfmt " to FMT.
- * format layout (last letter is changed into <1>)
- COPY testfm1.
- * call UNIF
- CALL "UNIF" using FKZ FMT fld0 RET SM Daten.
- * hide mouse
- call "MSOFF".
- anf-009.
- stop run.
-