home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / UT / UT126.ZIP / PRINTDOC.BAT < prev    next >
DOS Batch File  |  1990-09-17  |  416b  |  21 lines

  1. echo off
  2. REM
  3. REM  File to print or view docs
  4. REM
  5. bmenu 10 20 " Bmenu Documentation " " View Manual on Screen " " Print Manual on Printer " " Exit"
  6. if errorlevel 3 goto exit
  7. if errorlevel 2 goto print
  8. if errorlevel 1 goto view
  9. if errorlevel 0 goto exit
  10. :view
  11. cls
  12. type bmenu54.doc
  13. goto exit
  14. :print
  15. echo 
  16. echo Printing BMENU54.DOC to default printer...
  17. echo 
  18. copy bmenu54.doc prn
  19. goto exit
  20. :exit
  21.