
Tips.Net > WordTips Home > Macros > Controlling Repagination in Macros
Summary: For most Word users, repagination of a document is done automatically, in the background, as you are editing. If the edits are being done by a macro, the background repagination may slow down what the macro is doing. If you want to control repagination, you can use the Pagination property or simply turn off screen updating. (This tip works with Microsoft Word 97, Word 2000, Word 2002, and Word 2003.)
Ken asked if there is a way to turn off automatic repagination of a Word document while a macro is running. It turns out, in fact, that there are two ways you can handle this.
The first method is use the Pagination property of the Options object. You can set this property to either True or False, as follows:
Options.Pagination = False
This property is the same as setting the Background Repagination option on the General tab of the Options dialog box. (In some versions of Word you can only see this option if you first switch to Normal view.) If the property is set to False, then Word does not perform any background repagination. You can later set the property to True to turn the feature back on.
The second method for handling automatic repagination is to simply turn off screen updating. If your macro does quite a bit of slicing and dicing on the document, this is always a good idea, anyway, as it stops Word from trying to update the display. In some cases, the speed improvement for your macro can be dramatic if you turn off screen updating. You control screen updating in this manner:
Application.ScreenUpdating = False
Again, the ScreenUpdating property can be set to either True or False. If set to False, screen updating is turned off. If you turn it off, you should always set ScreenUpdating to True before ending your macro.
Tip #1710 applies to Microsoft Word versions: 97 2000 2002 2003
Great Idea! Uncover the many ways you can master the full potential of printing your documents. WordTips: Printing and Printers can help you get the most from both the printed page and your printer.
Word includes two powerful search engines. Do you know how to use them both? You can discover new knowledge with WordTips: Find and Replace. (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