home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo This is an example of using a batch file (.BAT) to start
- echo Create A Quiz (QUIZ.EXE) and instruct the program to run
- echo with an existing quiz file (SHARE.QZ) in the DISPLAY mode.
- echo.
- echo Once Create A Quiz is loaded into memory, the user will
- echo be prompted to enter his/her name and address, then the
- echo quiz SHARE.QZ will be run.
- echo.
- echo The command line instruction is:
- echo.
- echo QUIZ SHARE.QZ DISPLAY [ENTER]
- echo.
- echo Businesses: This DISPLAY option is an excellent way to use
- echo Create A Quiz as a self-standing sales display, testing a
- echo possible customer's knowledge of your products and/or
- echo services. A log of all user's names and addresses are
- echo stored in an ASCII file called USER.LST for later retrieval
- echo and possible follow-ups.
- echo.
- pause
- cls
- echo This DISPLAY option will force Create A Quiz into an eternal
- echo loop, that is, after 1 customer has used the program, the
- echo program will loop and prompt for a new customer's name. To
- echo exit this eternal looping feature, enter the word "GOODBYE"
- echo at the "NAME" prompt when inside the program. Don't forget!
- echo.
- echo Press CTRL+C to abort now, else
- pause
- QUIZ SHARE.QZ DISPLAY
-