help.hlp (Table of Contents; Topic list)
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
 
                                      ♦