IU 686 / 0311
20
TowerFeed
T M
for the HP LaserJet 4200 / 4300
APPENDIX B - Tips & Hints
The following table shows the internal denominations of the paper sources:
HP LaserJet 4200 / 4300
Media Type
Tray
Denomination
TF 1
256
e.g. Letterhead
TF 2
257
e.g. Plain
TF 3
258
e.g. Bond
TF 4
259
e.g. Color
TF 5
260
TF 6
261
TF 7
262
TF = TowerFeed Tray
Example:
The following Word Macro will produce an original document (on company paper) incl. 2 copies (plain and color).
Page
Original
(Copy 1)
1
st
Copy
(Copy 2)
2
nd
Copy
(Copy 3)
First Page
Letterhead
Plain
Color
Other Pages
Bond
Plain
Color
Macro Start
Sub Macro1 ()
Macro1 Macro
Macro recorded 30.01.03 by ...
With ActiveDocument.PageSetup
.LineNumbering.Active = False
.Orientation = wdOrientPortrait
.TopMargin = CentimeterToPoints (2.5)
.BottomMargin = CentimeterToPoints (2)
.LeftMargin = CentimeterToPoints (3)
.RightMargin = CentimeterToPoints (1.5)
.Gutter = CentimeterToPoints (0)
.HeaderDistance = CentimeterToPoints (1.25)
.FooterDistance = CentimeterToPoints (1.25)
.PageWidth = CentimeterToPoints (21)
.PageHeight = CentimeterToPoints (29.7)
.FirstPageTray =
257
.OtherPagesTray =
258
.SectionStart = wdSectionNewPage
.OddAndEvenPagesHeaderFooter = False
.DifferentFirstPageHeaderFooter = False
.VerticalAlignment = wdAlignVerticalTop
.SuppressEndnotes = False
.MirrorMargins = False
End With
ActiveDocument.PrintOut