APPENDIX B - Tips & Hints
The following table shows the internal denominations of the paper sources:
HP LaserJet
Tray | Denomination |
TF 1 | 256 |
TF 2 | 257 |
TF 3 | 258 |
TF 4 | 259 |
TF = TowerTray Tray
Media Type
e.g. Letterhead e.g. Plain e.g. Bond e.g. Color
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 30.08.04 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
Manual 0545 | 20 | TowerTrayTM for the HP LaserJet 4200 / 4300 / 4250 / 4350 |
|
|
|