home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 24 / CD_ASCQ_24_0995.iso / vrac / tsutlf15.zip / CHTEST.BAT < prev    next >
DOS Batch File  |  1993-08-07  |  492b  |  13 lines

  1. @echo off
  2. echo ┌───────────────────────────────────┐
  3. echo │ An example of CHOOSE.EXE usage    │
  4. echo │ By prof. Timo Salmi, Sat 7-Aug-93 │
  5. echo └───────────────────────────────────┘
  6. echo.
  7.  
  8. choose /c:yn /t:n,5 "Give your choice "
  9. if errorlevel==255 echo No such choice (255)
  10. if not errorlevel==3 if errorlevel==2 echo The choice was a n (2)
  11. if not errorlevel==2 if errorlevel==1 echo The choice was a y (1)
  12. if not errorlevel==1 if errorlevel==0 echo The choice was interrupted (0)
  13.