• Subject: Re: Save Multiple Attachments
  • Author: Bruno Campanini
  • Date: 21 Oct 2010
  • References: 1 2 3
Bryan explained on 21-10-10 :
> Bruno,
>
> Yes double click is fine. Yes saving to a network folder.

Sorry, SingleClick selects eMail, DoubleClick shows eMail contents.
Then you must arrange a macro button on the tool bar or simply execute
the procedure from VBE.

===============================================
Public Sub Selection_SaveAttachmentsToDir()
Dim Selected As Outlook.Selection, i As Integer, j As
Outlook.Attachment
Set Selected = ActiveExplorer.Selection

For i = 1 To Selected.Count
With Selected(i)
If .Class = olMail And .Attachments.Count Then
For Each j In .Attachments
j.SaveAsFile "C:\MyFolder\" & j.FileName
Next
End If
End With
Next

End Sub
================================================

Bruno
18 Oct 2010Save Multiple Attachments.Bryan
19 Oct 2010\ Re: Save Multiple Attachments.Bruno Campanini
21 Oct 2010   \ Re: Save Multiple Attachments.Bryan
21 Oct 2010      \ Re: Save Multiple Attachments.Bruno Campanini
Contact Us
All times are in (US) Eastern Daylight Time (GMT -4:00)