APPENDIX B - Tips & Hints
The following table shows the internal denominations of the paper sources:
HP LaserJet 8150 / 8100 / 8000 | Paper Type | ||
Tray |
| Denomination |
|
|
|
|
|
Tray 1 | (HP Printer) | wdPrinterUpperBin |
|
Tray 2 | (HP Printer) | wdPrinterLowerBin | e.g. Letterhead |
Tray 3 | (HP Printer) | wdPrinterLargeCapacityBin | e.g. Plain |
Tray 4 (TowerFeed) | 256 | e.g. Bond | |
Tray 5 | (TowerFeed) | 257 | e.g. Color |
Tray 6 (TowerFeed) | 258 |
| |
Tray 7 (TowerFeed) | 259 |
| |
Tray 8 | (TowerFeed) | 260 |
|
Tray 9 | (TowerFeed) | 261 |
|
|
|
|
|
Example:
The following Word Macro will produce an original document (on company paper) incl. 2 copies (plain and color).
Page | Original (Copy 1) | 1st Copy (Copy 2) | 2nd Copy (Copy 3) |
First Page | Letterhead | Plain | Color |
Other Pages | Bond | Plain | Color |
Macro Start |
|
|
|
Sub Macro1 () |
|
|
|
Macro1 Macro
Macro recorded 05.06.98 by ...
ActivePrinter = "HP LaserJet 8000 Series PCL 6"
Application.PrintOut FileName:="", Range:=wdPrintRangeOfPages, Item:= _ wdPrintDocumentContent, Copies:=1, Pages:="1", PageType:=wdPrintAllPages, _ Collate:=True, Background:=True, PrintToFile:=False
With ActiveDocument.PageSetup
.LineNumbering.Active = False
.Orientation = wdOrientPortrait
.TopMargin = CentimetersToPoints(1.8)
.BottomMargin = CentimetersToPoints(2)
.LeftMargin = CentimetersToPoints(2)
.RightMargin = CentimetersToPoints(1)
.Gutter = CentimetersToPoints(0)
.HeaderDistance = CentimetersToPoints(0.5)
.FooterDistance = CentimetersToPoints(2)
.PageWidth = CentimetersToPoints(21)
.PageHeight = CentimetersToPoints(29.7)
.FirstPageTray = wdPrinterLowerBin
.OtherPagesTray = 256
.SectionStart = wdSectionNewPage
.OddAndEvenPagesHeaderFooter = False
.DifferentFirstPageHeaderFooter = False
.VerticalAlignment = wdAlignVerticalTop
.SuppressEndnotes = False
.MirrorMargins = True End With
Active Document.PrintOut
IU 661 / 0047 | 18 | TowerFeedTM for the HP LaserJet 8150/8100/8000 |
|
|
|