View Single Post
 
Old 11-17-2015, 02:55 PM
niton niton is offline Windows 7 64bit Office 2010 64bit
Competent Performer
 
Join Date: Jul 2012
Posts: 102
niton is on a distinguished road
Default

Code:
 
Private Sub attSelect()
Dim oItm As Object
For Each oItm In ActiveExplorer.Selection
 
    If TypeOf oItm Is mailItem Then
        saveAttachtoDisk2 oItm
    End If
Next
End Sub
Reply With Quote