home *** CD-ROM | disk | FTP | other *** search
/ Season's Greetings & Games Unlimited / UGOLD_cd2.iso / bjack / printbj.bat < prev    next >
DOS Batch File  |  1994-08-20  |  1KB  |  44 lines

  1. echo off
  2. cls
  3. echo  
  4. echo  
  5. if not ""=="%1" goto sayuser
  6. echo     Printing to STANDARD PRINTER (Usually LPT1:)
  7. goto msg
  8. :sayuser
  9. echo     Printing to %1
  10. :msg
  11. echo  
  12. echo     Make sure your printer has at least 40 sheets of paper, and is set
  13. echo     to the TOP of the page.
  14. echo            ───
  15. echo  
  16. echo     If your printer is NOT connected to LPT1: cancel this operation
  17. echo     and rerun PRINTBJ followed by the name of the device you wish to
  18. echo     use for printing.  For example, to use LPT2: type
  19. echo  
  20. echo     PRINTBJ LPT2:     (include the ":")
  21. echo     
  22. echo     If you wish to cancel this operation press [Ctrl] + [C] then [Y]
  23. echo     otherwise,
  24. echo    
  25. pause
  26. if not ""==%1 goto user
  27. copy BJ_DOCS.TXT prn
  28. copy REGISTER.FRM prn
  29. goto end
  30. :user
  31. copy BJ_DOCS.TXT %1
  32. copy REGISTER.FRM %1
  33. :end
  34. echo  
  35. echo  
  36. echo     Printing is now complete.
  37. echo     Please take a moment to read over the documentation.
  38. echo     It contains useful information on Blackjack and BlackJack!.
  39. echo  
  40. echo                      ┌────────────────────────────────────┐
  41. echo                      │ Thank you for examining BlackJack! │
  42. echo                      │ Your support makes ShareWare work. │
  43. echo                      └────────────────────────────────────┘
  44.