ACC: Automation Object Disappears When Code Finishes ExecutingLast reviewed: August 29, 1997Article ID: Q161253 |
The information in this article applies to:
SYMPTOMSModerate: Requires basic macro, coding, and interoperability skills. When you use Automation to control another application, such as Microsoft Word or Microsoft Excel, the application quits as soon as your procedure finishes executing. This article assumes that you are familiar with Visual Basic for Applications and with creating Microsoft Access applications using the programming tools provided with Microsoft Access. For more information about Visual Basic for Applications, please refer to your version of the "Building Applications with Microsoft Access" manual.
CAUSEThe application quits because its object variable loses scope.
RESOLUTIONIf you do not want the Automation server application to close when your code finishes executing, use one of the following methods.
Method 1Declare the Object Variable in the Declarations Section of Your Code Module:
NOTE: If you declare your object variable in the Declarations section of a form or report module, Microsoft Excel remains open only as long as the form or report remains open.
Method 2Declare the Object Variable as a Static Variable at the Procedure Level:
NOTE: If you declare the Static variable as part of a procedure in a form or report module, Microsoft Excel remains open only as long as the form or report remains open.
MORE INFORMATIONWhere and how you declare a variable in a code module determines its scope and its lifetime. Scope is defined as the availability of a variable, constant, or procedure for use by another procedure. Lifetime is defined as the time during which a variable retains its value. When you declare an object variable within a procedure, the variable only retains its value as long as the procedure is running, as shown in the example in the "Steps to Reproduce Behavior" section.
Steps to Reproduce Behavior
REFERENCESFor more information about the scope and lifetime of variables, search the Help Index for "variables, scope," or "variables, lifetime." For more information about using the CreateObject function, search the Help Index for "CreateObject function." For more information about declaring Static variables, search the Help Index for "Static statement." For information about using Microsoft Access as an Automation server, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q147816 TITLE : ACC: Using Microsoft Access as an Automation ServerFor more information about quitting Microsoft Excel after you run Automation code, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q145770 TITLE : ACC: Automation Does Not Close Microsoft Excel Keywords : AutoGnrl kbinterop IntpOleA Version : 7.0 97 Platform : WINDOWS Hardware : x86 Issue type : kbprb Solution Type : kbcode |
================================================================================
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |