Article ID: 291120 - Last Review: November 23, 2006 - Revision: 3.5 How to automate Outlook 2002 from another programThis article was previously published under Q291120
For a Microsoft Outlook 97 version of this article, see 168095
(http://support.microsoft.com/kb/168095/
)
.
For a Microsoft Outlook 98 version of this article, see 181202
(http://support.microsoft.com/kb/181202/
)
.
For a Microsoft Outlook 2000 version of this article, see 201096
(http://support.microsoft.com/kb/201096/
)
.
On This PageSUMMARY
This article provides an overview of programming Outlook using
Automation from another program. 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 Partner or Microsoft Advisory Services. For more information, visit these Microsoft Web sites: Microsoft Certified Partners - https://partner.microsoft.com/global/30000104 (https://partner.microsoft.com/global/30000104) Microsoft Advisory Services - http://support.microsoft.com/gp/advisoryservice (http://support.microsoft.com/gp/advisoryservice) For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMS (http://support.microsoft.com/default.aspx?scid=fh;en-us;cntactms) Automation allows one program to control another program by either issuing commands or retrieving information programmatically. You can use the code examples in this article in Microsoft Word, Microsoft Excel, Microsoft Visual Basic, or any other program that supports Automation. Early vs. Late BindingYou can use either "early" or "late" binding to start an Automation session. Late binding uses either the GetObject or CreateObject function to initialize Outlook. For example, the following code sets an object to the Outlook program, which is the highest level object in the Outlook object model. All Automation code must first define an Outlook.Application object in order to access any of the other Outlook objects below that.
The Outlook Object ModelThe Outlook object model allows you to manipulate data stored in Outlook folders. Other features also allow you to manipulate the Outlook Bar, work with selected items in a folder, manipulate both item-level and application-level windows, and modify views. By adding events, your code can respond to many things that occur in Outlook, allowing you to create an event-driven solution.However, you will find that compared to Word and Excel, there is limited functionality available to control Outlook itself. Many features of Outlook are not exposed or customizable through the Outlook object model. For example, you cannot use the object model to change most of the Options settings on the Tools menu. NOTE: As a possible workaround to limitations regarding the object model, you can use the CommandBars object provided by Microsoft Office to execute most commands that are assigned to either toolbar buttons or menu commands. For example, you can use the CommandBars object to run the New Call command, on the Dial submenu of the Tools menu, to bring up the New Call dialog box. Most programming solutions need to interact with the data stored in Outlook. Outlook stores all of its information in Messaging Application Programming Interface (MAPI) folders. Therefore, after you set an object variable to Outlook.Application, you will commonly set a Namespace object to MAPI: 290804
(http://support.microsoft.com/kb/290804/EN-US/
)
OL2002: Programming Examples for Referencing Items and Folders
Once you are programmatically at the folder that contains the items you
want to either use or create, you can use appropriate code to accomplish
your programming task. See the examples later in the article for some common programming examples.In addition to accessing Outlook data from another application, you can also have your application become aware of when certain events occur in Outlook. Examples of events are when an item is added to a folder, when the user selects a different item in the folder, or when an Outlook reminder is displayed. For a complete list of available events, see the Microsoft Outlook Visual Basic Reference (Vbaol10.chm). For information on obtaining the help file, see the References section in this article. For additional information about integrating Outlook events in your application, click the article number below to view the article in the Microsoft Knowledge Base: 291119
(http://support.microsoft.com/kb/291119/EN-US/
)
OL2002: Using Outlook Events in Another Program
Sample Code for Common Programming TasksExample: Create a New Default Task ItemExample: Create a New Contact Using a Custom FormExample: Loop Through All the Default ContactsREFERENCESFor additional information about available resources and answers
to commonly asked questions about Microsoft Outlook solutions, click the article number below
to view the article in the Microsoft Knowledge Base:
287530
(http://support.microsoft.com/kb/287530/EN-US/
)
OL2002: Questions About Custom Forms and Outlook Solutions
| Article Translations
|
Back to the top
