home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / LASER / ENVL2P.ZIP / ENVL2P.DOC < prev   
Encoding:
Text File  |  1990-10-14  |  3.5 KB  |  110 lines

  1.  
  2.                           ENVL2P.DOC
  3.  
  4.  
  5.  
  6. This is a slightly modified version of Ron Saidikowski's Envelope
  7. Utility which appeared in the December 27, 1988, (V7N22) issue of
  8. PC Magazine.  It is designed for LaserJet IIP printers, which
  9. feed envelopes at the right-hand edge of the paper tray.  My
  10. modifications were, therefore, only to code controlling the top
  11. margin of the printing format.  Other program features should
  12. function as described in the PC Magazine article.
  13.  
  14. The original utility files can be downloaded from the EXEC-PC BBS
  15. (1-414-789-4210), and are contained in the file V7N22.ZIP.  I've
  16. included a copy of the original ENVELOPE.DOC file for reference.
  17.  
  18. The Utility will address either No. 10 (Large) or No. 6 (Small)
  19. envelopes, including a return address if desired.
  20.  
  21. For Large envelopes, the address field may be up to 56 characters
  22. wide, and for Small envelopes, up to 46 characters wide.
  23.  
  24. The return address field is up to 40 characters wide.
  25.  
  26.  
  27.  
  28. OPERATION:
  29.  
  30. The Utility is TSR and is envoked by pressing Alt-E.  After
  31. completing a letter ,etc., use the cursor arrow keys to position
  32. the cursor on the top left-hand corner of the recipient's name
  33. and address. (The menu will disappear at the first keystroke.)
  34. Hitting "Enter" then anchors the upper left-hand corner and
  35. displays a similar menu that tells you to move to the bottom
  36. right-hand corner of the address field.  As you move the cursor,
  37. the field will be highlighted in reverse video.
  38.  
  39. You can use up to six lines for the recipient's name and address.
  40.  
  41. Once you've defined the address field, pressing "Enter" brings up
  42. the print menu.  Press F1 to print on Small envelopes (No. 6) and
  43. F2 to print on Large (No. 10) envelopes.  F3 toggles the Rt Add
  44. (return address) on or off.  You can back out of this process
  45. before printing by hitting ESC.
  46.  
  47. Once the settings are picked, place the envelope in the tray
  48. (face down as shown in the LaserJet IIP Manual) and press
  49. "Enter."  The program requires feeding of the envelope.  At this
  50. point a "MF FEED" message will normally be displayed by the
  51. LJIIP. Just press the "Online" button and the envelope should
  52. print.
  53.  
  54.  
  55. RETURN ADDRESS:
  56.  
  57. Return addresses can be loaded from a separate text file.  Create
  58. an ASCII text file containing the return address on the first
  59. three lines, adding a fourth line that answers the question,
  60. "Save new ENVL2P.COM ?"  A typical file might be called
  61. RETADR.TXT and would look like this:
  62.  
  63.              Name
  64.              Address
  65.              City, State   Zip
  66.              N  
  67.  
  68. To load RETADR.TXT type in the command:
  69.  
  70.              ENVL2P /R < RETADR.TXT
  71.  
  72. After entering a new return address (or accepting the default)
  73. you can save an updated copy of ENVL2P.COM in your current
  74. directory by typing Y at the prompt.  ENVL2P.COM will install
  75. itself with your new return address or will update the current
  76. address if the program is already resident.
  77.  
  78.  
  79. CUSTOMIZING THE HOT KEYS:
  80.  
  81. A. Shift Mask Values:
  82.  
  83.         CTRL              =      04
  84.  
  85.         ALT               =      08
  86.  
  87.         CTRL + L-Shift    =      06
  88.  
  89. B. Scan Codes:
  90.  
  91.                X      =          2D
  92.  
  93.                V      =          2F
  94.  
  95.                Z      =          2C
  96.  
  97. The above is a very abbreviated list of some Shift Mask values
  98. and Scan Codes to allow changes in the default Hot Key.   The
  99. following is an example of how to use DEBUG to change the default
  100. Hot Key to CTRL-X:
  101.  
  102.          DEBUG ENVL2P.COM
  103.          E 857 "CTRL-X"
  104.          E 358 2D
  105.          E 362 04
  106.          W
  107.          Q
  108.  
  109.  
  110.