home *** CD-ROM | disk | FTP | other *** search
- ' Note: Simply run this routine using the QuickBASIC editor without any
- ' library.
- '
- COLOR 15, 0: CLS
- PRINT "QBUTIL - A QuickBASIC Programmer's Utility Set"
- PRINT
- PrintLoop:
- PRINT "Print the QBUTIL documentation files? [Y/N] :";
- LOCATE , , 1
- DO: A$ = UCASE$(INKEY$): LOOP UNTIL A$ <> "": PRINT A$
- IF A$ = "Y" THEN
- COLOR 15: CLS
- PRINT "Printing the main documentation file"; : COLOR 31: PRINT ".....": COLOR 15
- SHELL "TYPE QBUTIL5.PRN > prn:"
- PRINT "Printing the Appendix A file"; : COLOR 31: PRINT "....": COLOR 15
- SHELL "TYPE QBU-APA1.PRN > prn:"
- PRINT "Printing the Appendix B file"; : COLOR 31: PRINT "....": COLOR 15
- SHELL "TYPE QBU-APB.PRN > prn:"
- PRINT "Printing the Appendix C file"; : COLOR 31: PRINT "....": COLOR 15
- SHELL "TYPE QBU-APC.PRN > prn:"
- COLOR 15: END
- END IF
- IF A$ <> "N" THEN BEEP: GOTO PrintLoop
- CLS : END
-
-