oem.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
CALL--Examples
Syntax  Notes
────────────────────────────────────────────────────────────────────────────
 
                               CALL──Examples
 
To run the CHECKNEW.BAT program from another batch program, include the
following command in the parent batch program:
 
    call checknew
 
Suppose the parent batch program accepts two replaceable parameters and you
want it to pass those parameters to CHECKNEW.BAT. You can use the following
command in the parent batch program:
 
    call checknew %1 %2
 
                                      ♦