home *** CD-ROM | disk | FTP | other *** search
-
- File Date: 11-4-86 PHONEDIR.TXT Page 1
-
-
- reset ; reset the printer
-
- portrait ; select portrait mode
- char 28,50 ; make slightly narrower characters
- offset 5,0 ; offset to center form on page
- bold 4 ; select a bold line
- box 1,1,80,61 ; draw a box around form
-
- placetext cc ; place text in center-center
- font re10 ; select a large font
- box 1,1,80,3 ; draw box for title
- text /ADDRESS & PHONE DIRECTORY/ ; insert text
-
- box 1,3,25,5 ; draw a box for headings
- text /Name or Firm/ ; insert text
-
- box 25,3,63,5 ; draw a box for headings
- text /Address/ ; insert text
- box 63,3,80,5 ;
- text /Phone/ ;
-
- vertical 25,5,56 ; draw a vertical column
- vertical 63,5,56 ; draw a vertical column
-
- dupprocedure 14, 0, 4 ; repeat the following 14 times
- ; incrementing by 4 lines
- bold 1 ; select a thin line
- duphorizontal 25, 6, 38, 3, 1 ; draw 3 thin lines
- bold 4 ; select a bold line
- horizontal 1,9,79 ; draw one line full width
- dupend ; end the duplicated procedure
-
- ; print the advertisement
- block 2,61,79,62 ; define a window for the text
- font re3 ; select 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 text center-right
- text /FORM: PHONEDIR/ ; insert the text
- print ; print the form
-
-