
Tips.Net > WordTips Home > Printing > Easily Changing Print Order
Summary: You can change the order in which pages are printed (normal or reversed) using the Print dialog box. What if you want a way to specify the order without using the dialog box? The macros in this tip will make quick work of changing the print order. (This tip works with Microsoft Word 97, Word 2000, Word 2002, Word 2003, and Word 2007.)
Bob wonders if there is an easy way to switch from normal print order to reverse print order and back again. He understands it can be changed in the Print dialog box, but he is looking for a command he can place on the toolbar, instead.
The easiest way to implement a macro approach would be to create two macros. One is used to set normal print order, and the other is used to set reverse print order:
Sub ForwardPrint()
Options.PrintReverse = False
End Sub
Sub ReversePrint()
Options.PrintReverse = True
End Sub
The macros are very, very simple and can be assigned to individual toolbar buttons. If you prefer to implement a solution that uses a single macro (so you only need to use one toolbar button), then the following may work just fine:
Sub SwapPrint()
With Options
If .PrintReverse = True Then
.PrintReverse = False
MsgBox ("Now printing in normal order")
Else
.PrintReverse = True
MsgBox ("Now printing in reverse order")
End If
End With
End Sub
This approach toggles the PrintReverse property, so it switches between normal and reverse order. The macro also displays a dialog box that indicates the current printing order.
Tip #590 applies to Microsoft Word versions: 97 2000 2002 2003 2007
Take Control! Master the real power behind Word! Successfully master the secrets of powerful formatting and create documents that stand out from the rest. Best of all, you can create documents that are easy to maintain and quick to change.
Check out Word 2007 Styles and Templates today!
It doesn't matter if you are a beginner or expert, the WordTips archives are the fastest way to improved productivity. (more information...)
Ask a Word Question
Make a Comment
Beauty Tips
Bugs and Pests Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pet Tips
Word2007 Tips
WordTips