home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 036 / lj4disp.zip / README.TXT < prev   
Text File  |  1994-12-04  |  3KB  |  79 lines

  1. rev 1.0
  2.  
  3. Welcome to my program.  This program was written to change the
  4. display on an HP Laserjet 4 printer.  The standard display is
  5. "00 READY".  This is great for most people, but if you're one of
  6. the fun loving people, maybe you would like it to read: "Don't
  7. Touch" or "Fred's Printer".  If you work on a LAN, an
  8. informational message may be nice like: "RW1-PC8-HP4".  You are
  9. limited to 16 characters, because that is all the window can
  10. display - so keep your messages short.
  11.  
  12. How does the program work?
  13.  
  14.      The program works one of two ways:
  15.  
  16.      1 -  If you want to use it in your AUTOEXEC.BAT you may pass
  17.           the a literal string to the program and it will process
  18.           the string without additional prompting.  For example:
  19.  
  20.                LJ4DISP Grover Tech Inc.
  21.  
  22.           This will print "Grover Tech Inc." on your printer
  23.           display in place of the "00 READY" that is normally
  24.           displayed.  It will not pause or ask you to fill in
  25.           anything.
  26.  
  27.      2 -  The program also may run in interactive mode.  For
  28.           example:
  29.  
  30.                LJ4DISP
  31.  
  32.           This will display a prompt, asking you to fill in a
  33.           display message (up to 16 characters).
  34.  
  35.  
  36. This program was written in ANSII C using an HP4 for testing.  It
  37. may work with other printers in the HP4 family (like the 4P, 4Si,
  38. etc.), but it has only been tested on a plain HP4.  The source
  39. code has been included, if you make any changes please send me an
  40. update.  I just started writing C last week and this is my first
  41. program in this language.  You may send your comments and changes
  42. to my CompuServe ID:  Larry Tanner 70242,27
  43.  
  44.  
  45. Last, the disclaimer: I hereby disclaim all warranties relating
  46. to this software, whether expressed or implied, including without
  47. limitation any implied warranties of merchantability or fitness
  48. for a particular purpose.  I will not be liable for any special,
  49. incidental, consequential, indirect or similar damages due to
  50. loss of data or any other reason.  The person using the software
  51. bears all risk as to the quality and performance of the software. 
  52.  
  53. Gee, I always wanted to say that.
  54.  
  55.  
  56. ---------------------------------------------------------------
  57. Revision 2.0
  58.  
  59.  
  60.    rev 2.0  09/26/94
  61.  
  62.    revision by:    Jeff Steinmetz of Urge Productions
  63.                    internet:   jeffsteinm@aol.com
  64.                    compuserve: 74741,2006
  65.  
  66.     Note:  This is an MS-DOS enhancement.
  67.  
  68.     Added printer error routine.  Now if a printer error occurs,
  69.     it will abort the program, instead of asking Abort, Retry, Fail.
  70.     This will allow you to put it in your autoexec.bat file,
  71.     and it will not pause if your printer is turned off.
  72.     Of course it will not program your HPL4 if this is the case,
  73.     but at least your AUTOEXEC.BAT will continue unattended.
  74.  
  75.     By adding the error handling routine, the source code is no
  76.     longer ANSI C.  It is MS-DOS specific.
  77.  
  78.  
  79.