IU 683 / 0404 18 TowerFeedTM for Brother Printers
APPENDIX B - Tips & Hints
The following table shows the internal denominations of the paper sources:
Brother HL-Laser Printer Paper Type
Tray Denomination
Upper Paper Cassette wdPrinterUpperBin e.g. Letterhead
MP Tray wdPrinterMiddleBin
Manual Paper Tray wdPrinterManualFeed
TowerFeed 1 257 e.g. Plain
TowerFeed 2 258 e.g. Bond
TowerFeed 3 259 e.g. Color
TowerFeed 4 260
TowerFeed 5 261
TowerFeed 6 262
TowerFeed 7 263
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.01.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 = wdPrinterUpperBin
.OtherPagesTray = 258
.SectionStart = wdSectionNewPage
.OddAndEvenPagesHeaderFooter = False
.DifferentFirstPageHeaderFooter = False
.VerticalAlignment = wdAlignVerticalTop
.SuppressEndnotes = False
.MirrorMargins = False
End With
ActiveDocument.PrintOut