home *** CD-ROM | disk | FTP | other *** search
-
- File Date: 11-4-86 WEEKSCHD.TXT Page 1
-
-
- reset ; reset the printer
-
- portrait ; select portrait mode
- font re10 ; select a font for the text
- placetext cc ; place text in center of text window
-
- bold 3 ; choose a line thickness (3 dots)
- setgray 10 ; choose a gray scale
- box 1,1,80,4 ; draw the box for the title
- text /Weekly Schedule/ ; insert the text
- setclear ; clear the grayscale
-
- box 1,4,80,60 ; draw a box for the frame
-
- bold 1 ; choose a thinner line (1 dot)
- placetext ul ; place text in upper left of window
-
- setgray 10 ; choose a gray scale
- box 1,4,41,12 ; draw a box
- text // SUNDAY/ ; insert text
- setclear ; clear the gray scale
-
- box *,+8,*,+8 ; draw the next box adding 8 to y position
- text // MONDAY/ ; insert the text
- box *,+8,*,+8 ;
- text // TUESDAY/ ;
- box *,+8,*,+8 ;
- text // WEDNESDAY/ ;
- box *,+8,*,+8 ;
- text // THURSDAY/ ;
- box *,+8,*,+8 ;
- text // FRIDAY/ ;
- setgray 10 ; choose a gray scale
- box *,+8,*,+8 ;
- text // SATURDAY/ ;
- setclear ; clear the gray scale
-
- placetext uc ; position text in upper center of window
- block 41,4,80,60 ; define the text window
- text ++NOTES+ ; insert the text
-
- ; print the advertisement
-
- block 2, 60, 79, 61 ; define a window for the advertisement
- font re3 ; choose a small font
- placetext cl ; place text center-left
- text /Produced by FormSet/ ; insert the text
- placetext cc ; place the text center-center
- text /Printed with HP LaserJet Plus Resident Fonts/
- placetext cr ; place the text center-right
- text /Form: WEEKSCHD/ ; insert the text
- print ; print the form
-