The information in this article applies to:
SUMMARYAn Auto_Close procedure is an automatic procedure stored in a workbook that runs automatically when the workbook is closed. You can place automatic procedures in any Microsoft Visual Basic for Applications module in the workbook. A workbook-level automatic procedure is identified by its name (that is, Auto_Close or Auto_Open) as it appears in the module. 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.aspTo create an Auto_Close procedure, name the procedure "Sub Auto_Close()" (without the quotation marks). You can only have one Auto_Close procedure per workbook. If you have multiple Auto_Close macros in a workbook, none of them run. To create an Auto_Close procedure:
Auto_Close procedures run just before the workbook closes. You may want to use this type of procedure to restore menu bars or toolbars, or to close and save workbooks. Example
REFERENCESFor more information about Auto_Close procedures, click the Index tab in Microsoft Excel Help, type the following text Auto_Close Proceduresand then double-click the selected text to go to the "Running procedures when you open or close a workbook" topic. "Microsoft Excel Visual Basic Programmer's Guide," pages 208-210 "Microsoft Excel Visual Basic User's Guide," version 5.0, pages 266-267 Additional query words: 8.0 xl97 5.00c auto close autoclose
Keywords : kbprg kbdta kbdtacode PgmHowto KbVBA |
Last Reviewed: September 15, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |