Explorer.CurrentFolder Property

Outlook Developer Reference

Returns or sets a Folder object that represents the current folder displayed in the explorer. Read/write.

Syntax

expression.CurrentFolder

expression   A variable that represents an Explorer object.

Remarks

Use this property to change the folder the user is viewing.

Example

This Visual Basic for Applications (VBA) example uses the CurrentFolder property to change the displayed folder to the user's Calendar folder.

Visual Basic for Applications
  Sub ChangeCurrentFolder()
    Dim myNamespace As Outlook.NameSpace
	
    Set myNamespace = Application.GetNamespace("MAPI")
    Set Application.ActiveExplorer.CurrentFolder = _
    myNamespace.GetDefaultFolder(olFolderCalendar)
End Sub

See Also