Outlook の検索結果に、フォルダー名だけでなくフォルダーパスを表示する列を追加する方法はありますか? はいの場合、チュートリアルまたはドキュメントを提供していただけますか?
ありがとうございました
Outlook の検索結果に、フォルダー名だけでなくフォルダーパスを表示する列を追加する方法はありますか? はいの場合、チュートリアルまたはドキュメントを提供していただけますか?
ありがとうございました
この情報は、一度に 1 通のメールで取得できます。
http://vboffice.net/sample.html?lang=en&mnu=2&smp=65&cmd=showitem
Public Sub GetItemsFolderPath()
Dim obj As Object
Dim F As Outlook.MAPIFolder
Dim Msg$
Set obj = Application.ActiveWindow
If TypeOf obj Is Outlook.Inspector Then
Set obj = obj.CurrentItem
Else
Set obj = obj.Selection(1)
End If
Set F = obj.Parent
Msg = "The path is: " & F.FolderPath & vbCrLf
Msg = Msg & "Switch to the folder?"
If MsgBox(Msg, vbYesNo) = vbYes Then
Set Application.ActiveExplorer.CurrentFolder = F
End If
End Sub