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

  1. echo off
  2. :w
  3. cls
  4. echo.  
  5. echo. 
  6. echo. 
  7. echo. 
  8. echo.                     ********************************
  9. echo.                       A H - F O R M U L A - 2 0 0 0
  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. echo.Unterbrechung mit ^S !
  31. pause
  32. type handbuch.fo
  33. pause
  34. goto w
  35. :t2
  36. echo.Ist der Drucker bereit ?
  37. pause
  38. copy handbuch.fo prn
  39. goto w
  40. :ende
  41. echo on
  42.