D
DevalilaJohn
I have a simple macro which is called as part of a rule. The rule is
triggered by certain strings in the Subject line. The macro saves the
attachments and then delets the message. The code (abbreviated) looks like:
Public Sub SaveAndDelete(theMail as MailItem)
Dim MyAtt As Attachment
Dim stSavePath As String
..
..
logic to assign the path for saving
..
..
For Each MyAtt in theMail.Attachments
MyAtt.SaveAsFile stSavePath & MyAtt.DisplayName
Next
theMail.Delete
End Sub
Everything works correctly when I test it on my machine (Outlook 2003 SP3 XP
Pro SP3). One of my users is finding that the files are being saved but the
messages are not being deleted. To compound the confusion, I'm not seeing
any errors being raised.
So that raises a couple of questions:
1. The obvious, why isn't it deleting?
2. How would I detect if a SAVE or DELETE fails?
TIA,
John
triggered by certain strings in the Subject line. The macro saves the
attachments and then delets the message. The code (abbreviated) looks like:
Public Sub SaveAndDelete(theMail as MailItem)
Dim MyAtt As Attachment
Dim stSavePath As String
..
..
logic to assign the path for saving
..
..
For Each MyAtt in theMail.Attachments
MyAtt.SaveAsFile stSavePath & MyAtt.DisplayName
Next
theMail.Delete
End Sub
Everything works correctly when I test it on my machine (Outlook 2003 SP3 XP
Pro SP3). One of my users is finding that the files are being saved but the
messages are not being deleted. To compound the confusion, I'm not seeing
any errors being raised.
So that raises a couple of questions:
1. The obvious, why isn't it deleting?
2. How would I detect if a SAVE or DELETE fails?
TIA,
John