A SERVICE OF

logo

IU 645 / 9826 18 TowerFeed
TM
for the HP LaserJet 5000
APPENDIX B - Tips & Hints
The following table shows as example the internal denominations of the paper sources of a HP LaserJet 5000 with
TowerFeed.
HP LaserJet 5000 Paper Type
Tray Denomination
P 1 wdPrinterUpperBin
P 2 wdPrinterLowerBin e.g. Letterhead
TF 1 wdPrinterLargeCapacityBin e.g. Plain
TF 2 wdPrinterPaperCassette e.g. Bond
TF 3 257 e.g. Color
TF 4 258
TF 5 259
TF 6 260
TF 7 261
P = Printer Tray
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 Makro
Macro recorded 30.05.98 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 =
wdPrinterLowerBin
.OtherPagesTray =
wdPrinterPaperCassette
.SectionStart = wdSectionNewPage
.OddAndEvenPagesHeaderFooter = False
.DifferentFirstPageHeaderFooter = False
.VerticalAlignment = wdAlignVerticalTop
.SuppressEndnotes = False
.MirrorMargins = False
End With
ActiveDocument.Print.Out