次のコードは、Outlook 2000以降で動作します。選択したメッセージの添付ファイルを保存しますが、メッセージから添付ファイルを削除しません。
…
このページのコードをコピーしてThisOutlookSessionプロジェクトに貼り付けます。
Outlookで、Alt + F11を押してVBAエディターを開き、Microsoft Outlookオブジェクトを展開し、ThisOutlookSessionをダブルクリックして編集ペインで開き、Ctrl + Vでコードを貼り付けます。
これを使用するには、最初にOLAttachmentsという名前のマイドキュメントの下にフォルダーを作成する必要があります(コードはフォルダーを作成しません)。次に、1つ以上のメッセージを選択し、マクロを実行して添付ファイルを保存します。マクロを有効にする前、またはマクロに署名する前に警告するようにマクロセキュリティを設定する必要があります。コードを編集して、添付ファイルが保存されるフォルダー名またはパスを変更できます。
Public Sub SaveAttachments()
Dim objOL As Outlook.Application
Dim objMsg As Outlook.MailItem 'Object
Dim objAttachments As Outlook.Attachments
Dim objSelection As Outlook.Selection
Dim i As Long
Dim lngCount As Long
Dim strFile As String
Dim strFolderpath As String
Dim strDeletedFiles As String
' Get the path to your My Documents folder
strFolderpath = CreateObject("WScript.Shell").SpecialFolders(16)
On Error Resume Next
' Instantiate an Outlook Application object.
Set objOL = CreateObject("Outlook.Application")
' Get the collection of selected objects.
Set objSelection = objOL.ActiveExplorer.Selection
' The attachment folder needs to exist
' You can change this to another folder name of your choice
' Set the Attachment folder.
strFolderpath = strFolderpath & "\OLAttachments\"
' Check each selected item for attachments.
For Each objMsg In objSelection
Set objAttachments = objMsg.Attachments
lngCount = objAttachments.Count
If lngCount > 0 Then
' Use a count down loop for removing items
' from a collection. Otherwise, the loop counter gets
' confused and only every other item is removed.
For i = lngCount To 1 Step -1
' Get the file name.
strFile = objAttachments.Item(i).FileName
' Combine with the path to the Temp folder.
strFile = strFolderpath & strFile
' Save the attachment as a file.
objAttachments.Item(i).SaveAsFile strFile
Next i
End If
Next
ExitSub:
Set objAttachments = Nothing
Set objMsg = Nothing
Set objSelection = Nothing
Set objOL = Nothing
End Sub