home *** CD-ROM | disk | FTP | other *** search
/ Best of German Only 2 / romside_best_of_german_only_2.iso / dos / lernbild / trainer / start.bat < prev    next >
DOS Batch File  |  1980-03-01  |  677b  |  40 lines

  1. echo off
  2. :w
  3. cls
  4. echo.
  5. echo.
  6. echo.
  7. echo.
  8. echo.                     ********************************
  9. echo.                          D E R    T R A I N E R
  10. echo.                     ********************************
  11. echo.
  12. echo.
  13. echo.                     1  =  Handbuch anzeigen
  14. echo.
  15. echo.                     2  =  Handbuch drucken
  16. echo.
  17. echo.
  18. echo.                     9  =  Ende
  19. echo.
  20. echo.
  21. echo.                     Ihre Wahl ?
  22. echo.
  23. echo.
  24. taste
  25. if errorlevel 9 goto ende
  26. if errorlevel 2 goto t2
  27. if errorlevel 1 goto t1
  28. goto w
  29. :t1
  30. lese handbuch.le
  31. goto w
  32. :t2
  33. echo.Ist der Drucker bereit ?
  34. pause
  35. copy handbuch.le prn
  36. goto w
  37. :ende
  38. echo on
  39.  
  40.