APPENDIX B - Tips & Hints
The following table shows the internal denominations of the paper sources:
Brother |
| 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
First Page Other Pages
Original (Copy 1)
Letterhead
Bond
1st Copy (Copy 2)
Plain
Plain
2nd Copy (Copy 3)
Color
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
IU 683 / 0404 | 18 | TowerFeedTM for Brother Printers |
|
|
|