Article ID: 238975 - Last Review: August 18, 2005 - Revision: 3.4 How To Attach to a Running Instance of an Office ApplicationThis article was previously published under Q238975 SUMMARY To automate an Office application that is already running,
you can use the GetActiveObject() API function to obtain the IDispatch pointer for the running
instance. Once you have this IDispatch pointer for the running instance, you
can use the methods and the properties of the running instance. MORE INFORMATION Automation servers register themselves in the Running
Object Table (ROT) through the RegisterActiveObject() API. Automation clients can attach to a running instance with
code such as the following: Theoretically, you can iterate the ROT for each individual instance, but Office applications do not register themselves if another instance is already in the ROT because the moniker for itself is always the same, and cannot be distinguished. This means that you cannot attach to any instance except for the first. However, because Office applications also register their documents in the ROT, you can successfully attach to other instances by iterating the ROT looking for a specific document, attaching to this document, and then getting the Application object from this document. For a code example of iterating the ROT and looking for a document name, click the article number below to view the article in the Microsoft Knowledge Base: 190985
(http://support.microsoft.com/kb/190985/
)
How To Get IDispatch of an Excel or Word Document from an OCX
Note that this solution is not necessary for single-instance
applications since those applications can have only one instance running at a
given time. PowerPoint is an example of a single-instance application.
APPLIES TO
| Article Translations
|

Back to the top
