home *** CD-ROM | disk | FTP | other *** search
/ Explore the World of Soft…ids, Adults, Educational / RocelcoInc-ExploreTheWorldOfSoftware-KidsAdultsEducational-Vol2-Shareware.iso / educate / disk001 / bpause.dat < prev    next >
Text File  |  1991-11-28  |  437b  |  16 lines

  1. Explanation of the PAUSE command. It is 
  2. a BATCH command.
  3.  
  4. This command will let the batch file pause 
  5. until the user presses a key on the keyboard. 
  6.  
  7. Example:
  8.        After you type a screen with certain 
  9.        information, and you want your user 
  10.        to read this information, then add
  11.        a pause statement right after it:
  12.               Echo off
  13.               cls
  14.               type test.bat
  15.               pause
  16.