home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Clip Art Extravaganza: Business & Home 2
/
CSB2.ISO
/
clip2
/
program2
/
kd_draw3.arc
/
DOC.BAT
< prev
next >
Wrap
DOS Batch File
|
1987-10-18
|
4KB
|
79 lines
ECHO OFF
cls
IF %1!==! GOTO HELP1
GOTO %1
:HELP1
ECHO ┌──────────────────────────────────────────────────────────────────────┐
ECHO │ Four files are available on the program disk with additional │
ECHO │ information, the User Manual for Version 3.31, update information on │
ECHO │ additions to the program from 3.0 up to the latest version, the help │
ECHO │ file for the PC-KEY-DRAW, and a listing of the files on this disk. │
ECHO │ To send these files to the printer enter DOC followed by the name of │
ECHO │ the file to be printed as follows: │
ECHO └──────────────────────────────────────────────────────────────────────┘
ECHO User - Prints User Manual
ECHO Update - Prints Updates to PC-KEY-DRAW
ECHO Help - Prints Help file used in PC-KEY-DRAW
ECHO File - Prints Listing of the files on this disk
goto end
:USER
ECHO ╔═══════════════════════════════════════════════════════════════════╗
ECHO ║ The User Manual for PC-KEY-DRAW Ver 3.31 ║
ECHO ║ ───────────────────────────────────────────────────────────────── ║
ECHO ║ A 200 page user manual for PC-KEY-DRAW version 3.31 is about to ║
ECHO ║ be printed. ║
ECHO ║ ║
ECHO ║ Registered users get a printed user manual with pictures,index, ║
ECHO ║ IBM size binder, and Quick Reference card. ║
ECHO ║ ───────────────────────────────────────────────────────────────── ║
ECHO ║ Put Disk with KD-DOC.* files in drive B: ║
ECHO ║ ───────────────────────────────────────────────────────────────── ║
ECHO ║ Load printer with continuous forms. ║
ECHO ╚═══════════════════════════════════════════════════════════════════╝
PAUSE
COPY b:kd-doc.0 PRN:
ECHO Chapters 1 to 3 are about to be printed
PAUSE
copy b:kd-doc.1-3 prn:
ECHO Chapter 4 is about to be printed
PAUSE
copy b:kd-doc.4 prn:
ECHO Chapters 5 to 8 are about to be printed
PAUSE
copy b:kd-doc.5-8 prn:
ECHO Chapters 9 is about to be printed
PAUSE
copy b:kd-doc.9 prn:
ECHO Appendix is about to be printed
PAUSE
copy b:kd-doc.apx prn:
menu
:UPDATE
ECHO ┌────────────────────────────────────────────────────────────────────┐
echo │ Information on updates to PC-KEY-DRAW version 3.0 are about to be │
echo │ printed on your parallel printer (LPT1:) │
echo │ ────────────────────────────────────────────────────────────────── │
echo │ PC-KEY-DRAW is constantly being updated and improved. The listed │
echo │ updates are the more significant ones. Suggestions for future │
echo │ improvements are always welcome. │
ECHO └────────────────────────────────────────────────────────────────────┘
PAUSE
copy kd-updat.txt prn:
menu
:HELP
ECHO ┌─────────────────────────────────────────────────────────────────────┐
echo │ The help file for PC-KEY-DRAW is about to be printed on LPT1: │
echo │ ─────────────────────────────────────────────────────────────────── │
echo │ This help file is reached from within PC-KEY-DRAW by selecting "h" │
echo │ (Removal or renaming this file puts PC-KEY-DRAW in a run time mode) │
ECHO └─────────────────────────────────────────────────────────────────────┘
PAUSE
copy kd-draw.hlp prn:
menu
:FILE
ECHO The correct list of files on this disk is about to be printed on LPT1:
PAUSE
copy file.txt prn:
menu
:end