home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 1995 March
/
SOFM_Mar1995.bin
/
pc
/
bus
/
amtax94
/
printdoc.bat
< prev
next >
Wrap
DOS Batch File
|
1995-01-27
|
832b
|
32 lines
echo off
cls
echo .
echo .
echo . FOR A BRIEF DOCUMENTATION MANUAL ON AM-TAX:
echo .
echo . (1) Insert the AM-Tax program disk into drive A: (or B:).
echo .
echo . (2) Type A:PRINTDOC (or B:PRINTDOC) then press the Enter key.
echo .
echo . (3) Align the paper in your computer's printer.
echo .
echo . (4) Turn on your printer.
echo .
echo . (5) Press any key to start printing... OR
echo .
echo . TO SKIP THE PRINTING, press CTRL-C now..
pause
if exist *.doc goto start
if exist *.1 goto start
echo.
echo. ERROR...Documentation file not found.
echo.
echo. ACTION..Be sure A: (or B:) prompt is on the DOS screen, then retry.
goto end
:start
rem copy *.doc prn if no *.doc, print readme.1
if exist *.doc copy *.doc prn
if not exist *.doc copy readme.1 prn
:end
echo on