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

  1.  
  2. File Date: 11-4-86                                       WEEKSCHD.TXT                                           Page 1
  3.  
  4.  
  5. reset                              ; reset the printer
  6.  
  7. portrait                           ; select portrait mode
  8. font re10                          ; select a font for the text
  9. placetext cc                       ; place text in center of text window
  10.  
  11. bold 3                             ; choose a line thickness (3 dots)
  12. setgray 10                         ; choose a gray scale
  13. box    1,1,80,4                    ; draw the box for the title
  14. text /Weekly Schedule/             ; insert the text
  15. setclear                           ; clear the grayscale
  16.  
  17. box 1,4,80,60                      ; draw a box for the frame
  18.  
  19. bold 1                             ; choose a thinner line (1 dot)
  20. placetext ul                       ; place text in upper left of window
  21.  
  22. setgray 10                         ; choose a gray scale
  23. box 1,4,41,12                      ; draw a box
  24. text // SUNDAY/                    ; insert text
  25. setclear                           ; clear the gray scale
  26.  
  27. box *,+8,*,+8                      ; draw the next box adding 8 to y position
  28. text // MONDAY/                    ; insert the text
  29. box *,+8,*,+8                      ;
  30. text // TUESDAY/                   ;
  31. box *,+8,*,+8                      ;
  32. text // WEDNESDAY/                 ;
  33. box *,+8,*,+8                      ;
  34. text // THURSDAY/                  ;
  35. box *,+8,*,+8                      ;
  36. text // FRIDAY/                    ;
  37. setgray 10                         ; choose a gray scale
  38. box *,+8,*,+8                      ;
  39. text // SATURDAY/                  ;
  40. setclear                           ; clear the gray scale
  41.  
  42. placetext uc                       ; position text in upper center of window
  43. block 41,4,80,60                   ; define the text window
  44. text ++NOTES+                      ; insert the text
  45.  
  46. ; print the advertisement
  47.  
  48. block 2, 60, 79, 61                ; define a window for the advertisement
  49. font re3                           ; choose a small font
  50. placetext cl                       ; place text center-left
  51. text /Produced by FormSet/         ; insert the text
  52. placetext cc                       ; place the text center-center
  53. text /Printed with HP LaserJet Plus Resident Fonts/
  54. placetext cr                       ; place the text center-right
  55. text /Form: WEEKSCHD/              ; insert the text
  56. print                              ; print the form
  57.