home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Powerdrive 1998 March
/
POWERDRIVE0398.BIN
/
share
/
dos
/
anwend
/
es-kfz
/
_kfz153.exe
/
FORMULAR.BAT
< prev
next >
Wrap
DOS Batch File
|
1997-12-01
|
1KB
|
27 lines
@echo off
REM ┌─────────────────────────────────────────────────────────────────────────┐
REM │ FORMULAR Batchdatei von E. Schuster (C) Copyright 1997 │
REM │ │
REM │ Aufruf: FORMULAR Druckt das Bestellformular aus │
REM └─────────────────────────────────────────────────────────────────────────┘
cls
if not exist bestell.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 bestell.txt > prn
echo > prn
cls
goto end
:noform
echo.
echo Das Bestellformular 'BESTELL.TXT' ist nicht vorhanden!
echo.
:end
echo.
REM ┌─────────────────────────────────────────────────────────────────────────┐
REM │ Ende der Batchdatei 'FORMULAR' │
REM └─────────────────────────────────────────────────────────────────────────┘