home *** CD-ROM | disk | FTP | other *** search
- @echo off
- REM ┌─────────────────────────────────────────────────────────────────────────┐
- REM │ FORMULAR Batchdatei von E. Schuster (C) Copyright 1993 │
- REM │ │
- REM │ Aufruf: FORMULAR Druckt das Bestellformular aus │
- REM └─────────────────────────────────────────────────────────────────────────┘
- cls
- if not exist bestell1.txt goto noform
- echo.
- echo Bitte den Drucker bereitstellen und dann irgendeine Taste betätigen...
- echo (Abbrechen mit der Tastenkombination 'Strg+C' bzw. 'Ctrl+C')
- echo.
- pause >nul
- type bestell1.txt > prn
- cls
- goto end
- :noform
- echo.
- echo Das Bestellformular 'BESTELL1.TXT' ist nicht vorhanden!
- echo.
- :end
- echo.
- REM ┌─────────────────────────────────────────────────────────────────────────┐
- REM │ Ende der Batchdatei 'FORMULAR' │
- REM └─────────────────────────────────────────────────────────────────────────┘