The information in this article applies to:
SYMPTOMSWhen you run a Visual Basic for Applications macro in Microsoft Excel 97, the macro may take longer to complete than it does in earlier versions of Excel. For example, a macro that required several seconds to complete in an earlier version of Excel may require several minutes to complete in Microsoft Excel 97. CAUSEThis problem may occur if the following conditions are true:
WORKAROUNDTo work around the problem, use either of the following methods. Method 1: Manually Turn Off the Display of Page BreaksTo manually turn off the display of page breaks, follow these steps:
Method 2: Turn Off the Display of Page Breaks in Your MacroMicrosoft 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 professionals 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 a Microsoft Certified Solution Provider or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Solution Providers, please see the following page on the World Wide Web:http://www.microsoft.com/mcsp/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/overview/overview.aspTo work around the problem, add the following line of code to your Visual Basic macro: ActiveSheet.DisplayPageBreaks = FalseNOTE: This line of code must be inserted after you modify any of the properties of the PageSetup object, but before you modify the properties or the rows on your worksheet. MORE INFORMATIONFor more information about this problem, please see the following article in the Microsoft Knowledge Base: Q164919 XL97: Scrolling Through Worksheet Causes MS Excel to PauseFor more information about worksheet properties, please see the following article in the Microsoft Knowledge Base: Q169106 XL97: Some Worksheet Properties not Preserved Additional query words:
Keywords : kbdta kbdtacode |
Last Reviewed: November 4, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |