방법: 프로그래밍 방식으로 이름으로 폴더 검색
이 예제에서는 명명된 사용자 지정 폴더에 대한 참조를 가져온 다음 폴더의 내용을 표시합니다.
적용 대상: 이 항목의 정보는 Outlook 2013 및 Outlook 2010의 응용 프로그램 수준 프로젝트에 적용됩니다. 자세한 내용은 Office 응용 프로그램 및 프로젝트 형식에 따라 사용 가능한 기능을 참조하십시오.
예제
Private Sub SetCurrentFolder()
Dim folderName As String = "TestFolder"
Dim inBox As Outlook.MAPIFolder = Me.Application.ActiveExplorer().Session. _
GetDefaultFolder(Outlook.OlDefaultFolders.olFolderInbox)
Try
Me.Application.ActiveExplorer().CurrentFolder = inBox.Folders(folderName)
Me.Application.ActiveExplorer().CurrentFolder.Display()
Catch
MsgBox("There is no folder named " & folderName & _
".", "Find Folder Name")
End Try
End Sub
private void SetCurrentFolder()
{
string folderName = "TestFolder";
Outlook.MAPIFolder inBox = (Outlook.MAPIFolder)
this.Application.ActiveExplorer().Session.GetDefaultFolder
(Outlook.OlDefaultFolders.olFolderInbox);
try
{
this.Application.ActiveExplorer().CurrentFolder = inBox.
Folders[folderName];
this.Application.ActiveExplorer().CurrentFolder.Display();
}
catch
{
MessageBox.Show("There is no folder named " + folderName +
".", "Find Folder Name");
}
}
코드 컴파일
이 예제에는 다음 사항이 필요합니다.
- TestFolder라는 이름의 폴더
참고 항목
작업
방법: 프로그래밍 방식으로 사용자 지정 폴더 항목 만들기