Application Object

Description

Represents the entire Microsoft Outlook application. This is the only object in the hierarchy that can be returned by using the CreateObject or GetObject function.

The Outlook Application object has several purposes:

  • As the root object, it allows access to other objects in the Outlook hierarchy.
  • It allows direct access to new items created by using CreateItem, without having to traverse the object hierarchy.
  • It allows access to the active interface objects (the explorer and the inspector).
Using the Application Object

When you use Automation to control Microsoft Outlook from another application, you use the CreateObject function to create an Outlook Application object. The following example starts Microsoft Outlook (if it's not already running) and opens the default Inbox folder.

Set myOlApp = CreateObject("Outlook.Application")
Set olNameSpace = myOlApp.GetNameSpace("MAPI")
Set myFolder= _
    olNameSpace.GetDefaultFolder(olFolderInbox)
myFolder.Display
The following example uses the Application object to create and open a new contact.

Set myOlApp = CreateObject("Outlook.Application")
Set myItem = myOlApp.CreateItem(olContactItem)
myItem.Display
Properties

Assistant property.

Methods

ActiveExplorer method, ActiveInspector method, CreateItem method, CreateItemFromTemplate method, CreateObject method, GetNameSpace method, Quit method.