Running RM/Cobol version 7.00.03, what is the most efficient way to specify data paths? Presently I am using the following method and mapping the drive. What I would like to do is create a shortcut to the menu object file and the data path is known from the ini file or registry.
Batch file:
@echo off
@c:\rmc\RUNCOBOL e:\apl\MUSRUN K X=..\WINDOWS.CFG
@call JCLEXE00.bat
Line code:
012400 01 EF-NAME.
012600 03 FILLER PICTURE X(7) VALUE "../apl/".
012600 03 FILLER PICTURE X(6) VALUE "IVEXPL".
012800 03 EFGG PICTURE 99 VALUE ZERO.
013000 03 FILLER PICTURE XXXX VALUE ".dat".
All help appreciated
Batch file:
@echo off
@c:\rmc\RUNCOBOL e:\apl\MUSRUN K X=..\WINDOWS.CFG
@call JCLEXE00.bat
Line code:
012400 01 EF-NAME.
012600 03 FILLER PICTURE X(7) VALUE "../apl/".
012600 03 FILLER PICTURE X(6) VALUE "IVEXPL".
012800 03 EFGG PICTURE 99 VALUE ZERO.
013000 03 FILLER PICTURE XXXX VALUE ".dat".
All help appreciated