The information in this article applies to:
SYMPTOMS
When you save a workbook in Microsoft Excel, the program may appear to
stop responding (hang), and the following symptoms may occur:
CAUSE
This problem occurs when all of the following conditions are true:
RESOLUTION
To prevent this problem from occurring, add the following code to all
macros that you specify in the OnSave command
before the end of each macro. NOTE: When this behavior occurs, you must quit Microsoft Excel by pressing ALT+F4. STATUSMicrosoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. 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 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.asp In Microsoft Excel 7.0 and later, you can use the OnSave property to specify a macro that runs after you initiate saving a workbook, and before Microsoft Excel saves the workbook. Example of the ProblemThe following example demonstrates the use of the OnSave property:
After you run the first macro, Microsoft Excel automatically runs the second macro each time you save the active workbook. Turning off Screen UpdatingYou can turn off screen updating while a macro runs by including the following line of code in the macro:
You can enable screen updating by setting the ScreenUpdating property to True. Usually, this step is not necessary: Microsoft Excel automatically enables screen updating when the macro stops running. However, there is one exception to this rule. If a macro that is run by the OnSave property contains a command to turn off screen updating, Microsoft Excel does not enable screen updating automatically when the macro is finished. When this behavior occurs, Microsoft Excel appears to stop responding (hang). However, the program is not "frozen." The program is not redrawn on the screen correctly, which prevents you from using any part of the program. Example of the ResolutionTo prevent the problem, enable screen updating by resetting the ScreenUpdating property to True before the end of the macro. For example, change the example in the "Example of the Problem" section to the following:
Additional query words: hung freeze frozen locked stopped XL2000
Keywords : kbprg kbdta kbdtacode xlloadsave KbVBA xlvbmigrate |
Last Reviewed: July 20, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |