home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / LASER / FORMSET.ZIP / LEDGER.PRN < prev    next >
Encoding:
Text File  |  1986-11-04  |  1.4 KB  |  37 lines

  1.  
  2. File Date: 11-4-86                                      LEDGER.TXT                                              Page 1
  3.  
  4.  
  5. reset                              ; reset the printer
  6.  
  7. portrait                           ; select portrait mode
  8. character 28,50                    ; select smaller character width
  9. offset 5                           ; offset 5 columns to center form
  10.  
  11.  
  12. bold 5                             ; select a bold line
  13. box 1,1,80,61                      ; draw a box around the form
  14.  
  15.  
  16. horizontal 1,4,79                  ; draw a horizontal line for headings
  17. dupvertical 30, 1, 60, 5, 10       ; draw 5 vertical lines for column divisions
  18. bold 1                             ; select a thin line
  19.  
  20.  
  21. duphorizontal 1, 5, 79, 56, 1      ; draw 56 horizontal rows
  22. dupvertical 37, 4, 57, 5, 10       ; draw 5 vertical lines for cents columns
  23.  
  24.  
  25. ; print the advertisement
  26. block 2, 61, 79, 62                ; define a window for the advertisement
  27. font re3                           ; choose a small font
  28. placetext cl                       ; place text center-left
  29. text /Produced by FormSet/         ; insert the text
  30.  
  31.  
  32. placetext cc                       ; place the text center-center
  33. text /Printed with HP LaserJet Plus Resident Fonts/
  34. placetext cr                       ; place the text center-right
  35. text /Form: LEDGER/                ; insert the text
  36. print                              ; print the form
  37.