MSOutlook 10の検索結果に[フォルダー]列を含めますか?


0

MS Outlook 10のすべてのフォルダーで検索を実行したときに、電子メールが実際にどのサブフォルダーにあるのかわからないほど多くのサブフォルダーがあります。検索結果に「フォルダ内」列を永続的に含めるにはどうすればよいですか?

回答:


0

このVBAの代替手段が役立つ場合があります。フォルダパスが表示され、フォルダへの切り替えが提案されます。

http://www.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 as String
  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

エディターとボタンのヘルプ-http://www.slipstick.com/developer/how-to-use-outlooks-vba-editor/

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.