home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1996 December
/
PCWKCD1296.iso
/
mmedia
/
artdeco
/
order.bat
< prev
next >
Wrap
DOS Batch File
|
1995-08-01
|
2KB
|
32 lines
echo off
cls
echo ┌────────────────────────────────────────────────────────────────────────┐
echo │ Elfring Soft Fonts, PO Box 61, Wasco, IL 60183 │
echo │ Phone: 708-377-3520 Fax: 708-377-6402 │
echo │ │
echo │ This batch file will print a copy of the order form for our Art Deco │
echo │ TrueType Collection. Once we receive your payment we send you the │
echo │ complete collection of 56 fonts, our catalog and font newsletter, plus │
echo │ access to technical support. │
echo │ │
echo │ Make sure your printer is on and ready to run. This batch file assumes │
echo │ your printer is attached to LPT1:. If you use a different printer port │
echo │ hit Ctrl-C now to stop this batch file. Then restart the batch file, │
echo │ passing it the printer port you do use: │
echo │ │
echo │ ORDER LPT2 or ORDER COM1 │
echo │ │
echo │ If you *don't* want to print this, press the Ctrl-C key now to abort │
echo │ this batch file and return to INSTALL. │
echo └────────────────────────────────────────────────────────────────────────┘
pause
echo Printing a copy of ESF's Art Deco TrueType Collection order form....
if "%1"=="" goto DOLPT1
copy order.frm %1:
goto done
:DOLPT1
copy order.frm LPT1:
:done