babycody
11-08-2006, 07:42 PM
Hello everyone! I found this code, and placed it in a module. I commented out the messages, and changed it to suit. I don't have a lot of experience coding in Outlook. I do have some experience with VBA in Excel. I have six subs in a module. Each does pretty much the same thing. I used this sub in ThisOutlookSession module to call the subs in the regular module. The problem is that the code doesn't seem to activate until I receive the next email message. I am using rules to move messages to subfolders. When a message gets put into one of these folders its attachment is renamed and saved in a folder within a folder on my desktop. The code seems to work properly, but it isn't being triggered at the correct time. Can you advise me as to what I am doing incorrectly?
Private Sub Application_NewMail()
Call SaveAttachmentsToShipTotal
Call SaveAttachmentsToUsage
Call SaveAttachmentsToOrders
Call SaveAttachmentsToFertilizerAdjustments
Call SaveAttachmentsToGranularAdjustments
Call SaveAttachmentsToLiquidAdjustments
End Sub
Here is one example of a sub that is being called:
Sub SaveAttachmentsToFertilizerAdjustments()
' This Outlook macro checks a named subfolder in the Outlook Inbox
' (here the "Sales Reports" folder) for messages with attached
' files of a specific type (here file with an "xls" extension)
' and saves them to disk. Saved files are timestamped. The user
' can choose to view the saved files in Windows Explorer.
' NOTE: make sure the specified subfolder and save folder exist
' before running the macro.
On Error GoTo SaveAttachmentsToFolder_err
' Declare variables
Dim ns As NameSpace
Dim Inbox As MAPIFolder
Dim SubFolder As MAPIFolder
Dim Item As Object
Dim Atmt As Attachment
Dim FileName As String
Dim i As Integer
Dim varResponse As VbMsgBoxResult
Set ns = GetNamespace("MAPI")
Set Inbox = ns.GetDefaultFolder(olFolderInbox)
Set SubFolder = Inbox.Folders("Fertilizer Adjustments") ' Enter correct subfolder name.
i = 0
' Check subfolder for messages and exit of none found
'If SubFolder.Items.Count = 0 Then
' MsgBox "There are no messages in the ship total folder.", vbInformation, _
' "Nothing Found"
' Exit Sub
'End If
' Check each message for attachments
For Each Item In SubFolder.Items
For Each Atmt In Item.Attachments
' Check filename of each attachment and save if it has "xls" extension
If Right(Atmt.FileName, 3) = "xls" Then
' This path must exist! Change folder name as necessary.
FileName = "C:\Documents and Settings\wharper\Desktop\BS by Wayne\Fertilizer Adjustment\" & _
"Fertilizer Adjustments.xls"
Atmt.SaveAsFile FileName
i = i + 1
End If
Next Atmt
Next Item
' Show summary message
'If i > 0 Then
' varResponse = MsgBox("I found " & i & " attached files." _
' & vbCrLf & "I have saved them into the C:\Documents and Settings\wharper\Desktop\Ship Total." _
' & vbCrLf & vbCrLf & "Would you like to view the files now?" _
' , vbQuestion + vbYesNo, "Finished!")
' Open Windows Explorer to display saved files if user chooses
'If varResponse = vbYes Then
'Shell "Explorer.exe /e,C:\Documents and Settings\wharper\Desktop\Ship Total", vbNormalFocus
'End If
'Else
' MsgBox "I didn't find any attached files in your mail.", vbInformation, "Finished!"
'End If
' Clear memory
SaveAttachmentsToFolder_exit:
Set Atmt = Nothing
Set Item = Nothing
Set ns = Nothing
Exit Sub
' Handle Errors
SaveAttachmentsToFolder_err:
MsgBox "An unexpected error has occurred." _
& vbCrLf & "Please note and report the following information." _
& vbCrLf & "Macro Name: GetAttachments" _
& vbCrLf & "Error Number: " & Err.Number _
& vbCrLf & "Error Description: " & Err.Description _
, vbCritical, "Error!"
Resume SaveAttachmentsToFolder_exit
End Sub
Thank you for taking a look.
Private Sub Application_NewMail()
Call SaveAttachmentsToShipTotal
Call SaveAttachmentsToUsage
Call SaveAttachmentsToOrders
Call SaveAttachmentsToFertilizerAdjustments
Call SaveAttachmentsToGranularAdjustments
Call SaveAttachmentsToLiquidAdjustments
End Sub
Here is one example of a sub that is being called:
Sub SaveAttachmentsToFertilizerAdjustments()
' This Outlook macro checks a named subfolder in the Outlook Inbox
' (here the "Sales Reports" folder) for messages with attached
' files of a specific type (here file with an "xls" extension)
' and saves them to disk. Saved files are timestamped. The user
' can choose to view the saved files in Windows Explorer.
' NOTE: make sure the specified subfolder and save folder exist
' before running the macro.
On Error GoTo SaveAttachmentsToFolder_err
' Declare variables
Dim ns As NameSpace
Dim Inbox As MAPIFolder
Dim SubFolder As MAPIFolder
Dim Item As Object
Dim Atmt As Attachment
Dim FileName As String
Dim i As Integer
Dim varResponse As VbMsgBoxResult
Set ns = GetNamespace("MAPI")
Set Inbox = ns.GetDefaultFolder(olFolderInbox)
Set SubFolder = Inbox.Folders("Fertilizer Adjustments") ' Enter correct subfolder name.
i = 0
' Check subfolder for messages and exit of none found
'If SubFolder.Items.Count = 0 Then
' MsgBox "There are no messages in the ship total folder.", vbInformation, _
' "Nothing Found"
' Exit Sub
'End If
' Check each message for attachments
For Each Item In SubFolder.Items
For Each Atmt In Item.Attachments
' Check filename of each attachment and save if it has "xls" extension
If Right(Atmt.FileName, 3) = "xls" Then
' This path must exist! Change folder name as necessary.
FileName = "C:\Documents and Settings\wharper\Desktop\BS by Wayne\Fertilizer Adjustment\" & _
"Fertilizer Adjustments.xls"
Atmt.SaveAsFile FileName
i = i + 1
End If
Next Atmt
Next Item
' Show summary message
'If i > 0 Then
' varResponse = MsgBox("I found " & i & " attached files." _
' & vbCrLf & "I have saved them into the C:\Documents and Settings\wharper\Desktop\Ship Total." _
' & vbCrLf & vbCrLf & "Would you like to view the files now?" _
' , vbQuestion + vbYesNo, "Finished!")
' Open Windows Explorer to display saved files if user chooses
'If varResponse = vbYes Then
'Shell "Explorer.exe /e,C:\Documents and Settings\wharper\Desktop\Ship Total", vbNormalFocus
'End If
'Else
' MsgBox "I didn't find any attached files in your mail.", vbInformation, "Finished!"
'End If
' Clear memory
SaveAttachmentsToFolder_exit:
Set Atmt = Nothing
Set Item = Nothing
Set ns = Nothing
Exit Sub
' Handle Errors
SaveAttachmentsToFolder_err:
MsgBox "An unexpected error has occurred." _
& vbCrLf & "Please note and report the following information." _
& vbCrLf & "Macro Name: GetAttachments" _
& vbCrLf & "Error Number: " & Err.Number _
& vbCrLf & "Error Description: " & Err.Description _
, vbCritical, "Error!"
Resume SaveAttachmentsToFolder_exit
End Sub
Thank you for taking a look.