home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / wp / nyword.zip / LASERJET.BAS < prev    next >
BASIC Source File  |  1986-12-17  |  653b  |  19 lines

  1.  
  2. 10 rem  The HP LaserJet printer requires special codes in order to start 
  3. 15 rem  printing at the very top of the page.  The codes necessary to 
  4. 20 rem  accomplish this, and also set the printer for 10 characters per inch,
  5. 25 rem  are given below.  To send these codes to your printer, load BASIC and
  6. 30 rem  type:
  7.  
  8. 35 rem  RUN "A:LASERJET"
  9.  
  10. 40 rem  assuming that you have the RGB-TechWriter disk in drive A:
  11.  
  12.  
  13. 45 LPRINT CHR$(27)+"E"+CHR$(27)+"&l0E"+CHR$(27)+"&l66F"+CHR$(27)+"(s10H";
  14. 50 SYSTEM: END
  15.  
  16. 55 rem  At the DOS prompt you can proceed to copy the documentation files to
  17. 60 rem  the printer as described in the file READ.ME.
  18. 
  19.