home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / HOTTIP.ZIP / MPAUSE.DOC < prev    next >
Text File  |  1993-08-24  |  748b  |  22 lines

  1. MPAUSE                September 1993              Matthew Willis
  2.                                                         Page 293
  3. ----------------------------------------------------------------
  4. Purpose:    MPAUSE replaces DOS's internal PAUSE command,
  5.             causing DOS to pause until a single key is pressed
  6.             or a mouse button is clicked to continue.
  7.  
  8. Format:     The syntax for using MPAUSE.COM is:
  9.  
  10.                 MPAUSE
  11.  
  12. Comments:   Add MPAUSE to your batch files as demonstrated in
  13.             the following batch file:
  14.  
  15.             @ECHO OFF
  16.             REM Use this batch file to test MPAUSE.COM
  17.             ECHO Press any key or click a mouse button to continue
  18.             MPAUSE
  19.             ECHO
  20.  
  21.  
  22.