JournalItem Object

Outlook Developer Reference

Represents a journal entry in a Journal folder.

Remarks

A journal entry represents a record of all Outlook-moderated transactions for any given period.

Use the CreateItem method to create a JournalItem object that represents a new journal entry.

Use Items(

index

), where

index

is the index number of a journal entry or a value used to match the default property of a journal entry, to return a single JournalItem object from a Journal folder.

Example

The following Visual Basic for Applications (VBA) example returns a new journal entry.

Visual Basic for Applications
  Set myItem = Application.CreateItem(olJournalItem)

See Also