home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / s / sbt25sm1.zip / PRINTME.BAT < prev    next >
DOS Batch File  |  1993-01-14  |  2KB  |  56 lines

  1. ECHO OFF
  2.  
  3. REM -------------------------------------------------------------------------
  4. REM  File Name..: PRINTME.BAT
  5. REM  Version....: Professional 2.50
  6. REM  Last Update: 01/14/93
  7. REM ------------------------------------------------------------------------
  8. REM  Notice.....: (c) Copyright 1990, Revisions 90 - 93 by SBT Corporation
  9. REM               All Rights Reserved by SBT Corporation
  10. REM -------------------------------------------------------------------------
  11. REM  App ID.....: SY
  12. REM  App Name...: System Services Module
  13. REM -------------------------------------------------------------------------
  14. REM  Description: batch file to direct README file to the printer
  15. REM -------------------------------------------------------------------------
  16. REM  $Header:   $
  17. REM -------------------------------------------------------------------------
  18. REM Clear screen and display loading message
  19. CLS
  20. ECHO .
  21. IF NOT EXIST README.TXT GOTO ERR_HD
  22. ECHO   » This program will print a report of changes made in the SBT database
  23. ECHO     accounting library since the program manuals were printed.
  24. ECHO .
  25. ECHO   » If do not want to print this report type ^C to Terminate batch job.
  26. ECHO .
  27. ECHO   » If you want to display the file to the screen, type ^C,
  28. ECHO     wait for the DOS prompt and then type README. 
  29. ECHO .
  30. PAUSE
  31. COPY README.TXT PRN
  32. CLS
  33. ECHO .
  34. ECHO   » Printing of SBT Documentation update completed....
  35. ECHO .
  36. ECHO .
  37. ECHO .
  38. ECHO .
  39. PAUSE
  40. GOTO END
  41. :ERR_HD
  42. ECHO 
  43. ECHO ERROR - The file README.TXT is not available in the current directory.
  44. ECHO         If you want to print the report of changes in SBT programs,
  45. ECHO         you must copy this file from your SBT distribution disk to
  46. ECHO         the current directory and try again.
  47. ECHO .
  48. ECHO .
  49. PAUSE
  50. GOTO END
  51. :END
  52. CLS
  53. REM -------------------------------------------------------------------------
  54. REM File Name..: PRINTME.BAT
  55. REM Total Lines: 55
  56.