home *** CD-ROM | disk | FTP | other *** search
/ Powerdrive 1998 March / POWERDRIVE0398.BIN / share / dos / anwend / es-plv / _plv231.exe / FORMULAR.BAT < prev    next >
DOS Batch File  |  1997-12-01  |  1KB  |  27 lines

  1. @echo off
  2. REM ┌─────────────────────────────────────────────────────────────────────────┐
  3. REM │  FORMULAR           Batchdatei von E. Schuster      (C) Copyright 1997  │
  4. REM │                                                                         │
  5. REM │  Aufruf: FORMULAR   Druckt das Bestellformular aus                      │
  6. REM └─────────────────────────────────────────────────────────────────────────┘
  7. cls
  8. if not exist bestell.txt goto noform
  9. echo.
  10. echo Bitte den Drucker bereitstellen und dann irgendeine Taste betätigen...
  11. echo (Abbrechen mit der Tastenkombination 'Strg+C' bzw. 'Ctrl+C')
  12. echo.
  13. pause >nul
  14. type bestell.txt > prn
  15. echo   > prn
  16. cls
  17. goto end
  18. :noform
  19. echo.
  20. echo Das Bestellformular 'BESTELL.TXT' ist nicht vorhanden!
  21. echo.
  22. :end
  23. echo.
  24. REM ┌─────────────────────────────────────────────────────────────────────────┐
  25. REM │                     Ende der Batchdatei 'FORMULAR'                      │
  26. REM └─────────────────────────────────────────────────────────────────────────┘
  27.