home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / screen / screenv.arj / SAFEEXE.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-06-09  |  270 b   |  17 lines

  1. @echo off
  2. REM Example of SCREEN.EXE by Tom Snively.
  3.  
  4. SCREEN W /Y /B Warning: [Insert warning.] Go on?
  5.  
  6. if errorlevel 1 goto End
  7. SCREEN P Processing.
  8.  
  9. REM
  10. REM Put statements for operation here.
  11. REM
  12.  
  13. if errorlevel 0 SCREEN G Format successful.
  14.  
  15. :End
  16.     
  17.