home *** CD-ROM | disk | FTP | other *** search
/ TopWare Tools / TOOLS.iso / tools / top1229 / gepackt.exe / FORMULAR.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-07-01  |  1012 b   |  26 lines

  1. @echo off
  2. REM ┌─────────────────────────────────────────────────────────────────────────┐
  3. REM │  FORMULAR           Batchdatei von E. Schuster      (C) Copyright 1993  │
  4. REM │                                                                         │
  5. REM │  Aufruf: FORMULAR   Druckt das Bestellformular aus                      │
  6. REM └─────────────────────────────────────────────────────────────────────────┘
  7. cls
  8. if not exist bestell1.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 bestell1.txt > prn
  15. cls
  16. goto end
  17. :noform
  18. echo.
  19. echo Das Bestellformular 'BESTELL1.TXT' ist nicht vorhanden!
  20. echo.
  21. :end
  22. echo.
  23. REM ┌─────────────────────────────────────────────────────────────────────────┐
  24. REM │                     Ende der Batchdatei 'FORMULAR'                      │
  25. REM └─────────────────────────────────────────────────────────────────────────┘
  26.