XL: All PageSetup Settings Are Recorded into MacroLast reviewed: February 3, 1998Article ID: Q109205 |
The information in this article applies to:
SYMPTOMSIn Microsoft Excel, if you record a Microsoft Visual Basic for Applications macro that includes a Page Setup command, all of the Page Setup settings are recorded. Because of this, you may find that running a recorded Visual Basic PageSetup function may take an unusually long amount of time, up to two minutes or more (depending on the speed of your computer). Also, the screen may flicker or blink repeatedly while the function is being executed.
CAUSEIf you record a Page Setup in a Visual Basic macro, all the settings are recorded due to the way in which page setup information is returned to the macro recording system. The flickering occurs due to the way in which the PageSetup function updates the sheet's different Page Setup settings. The amount of flickering is related to the number of Page Setup settings you change with the PageSetup function: changing more settings results in more flickering.
WORKAROUNDAfter you record a Visual Basic PageSetup function, you will probably want to eliminate unneeded settings from the PageSetup function. To prevent the flickering, set the Application.ScreenUpdating property to False before executing your PageSetup function. Then, when the PageSetup function has completed, you can set the Application.ScreenUpdating property back to True to reenable screen redraws.
MORE INFORMATIONMicrosoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/refguide/default.aspThe first Visual Basic code example shows the results of recording a Visual Basic PageSetup function. The second Visual Basic code example shows one way in which you can prevent the screen from flickering or blinking while a PageSetup function is being executed.
Example One - Recording a Page Setup
Sub Macro1() With ActiveSheet.PageSetup .PrintTitleRows = "$1:$3" .PrintArea = "$A$4:$C$100" .Orientation = xlLandscape End With End SubBecause the other settings do not need to be changed, it is not necessary to include them in the subroutine. However, you must remove them yourself. Also, note that the entire PageSetup procedure can be incorporated into a single With-End With section. It is not necessary for the PrintArea, PrintTitleRows, or PrintTitleColumns settings to be changed separately from the other settings; it is only recorded that way.
Example Two - Preventing Screen Flicker While PageSetup ExecutesThe following subroutine demonstrates one way in which you may prevent the screen from flickering while a PageSetup function is being executed.
Sub PreventScreenFlicker() ' This line turns off screen updating. Application.ScreenUpdating = False ' Apply each of the following properties to the active sheet's Page ' Setup. With ActiveSheet.PageSetup .PrintTitleRows = "$1:$3" ' Set print title rows. .PrintTitleColumns = "$A:$C" ' Set print title columns. .LeftHeader = "" ' Set the left header. ' More commands could appear before the End With. They are not ' shown here in order to keep the example short. End With ' End of With section. ' Re-enable screen updating. This line is optional; you may not need ' or want to re-enable screen updating. Application.ScreenUpdating = True End SubThe subroutine turns off screen updating just before executing the PageSetup function and then turns screen updating back on when the PageSetup function is complete. If screen updating is not turned off, as each line in the With section (.PrintTitleRows, .PrintTitleColumns, and so forth) is executed, the screen may flicker slightly.
|
Additional query words: 5.00 7.00 8.00 XL97 XL98 XL7 XL5
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |