Outlook Banter

Outlook Banter (http://www.outlookbanter.com/)
-   Outlook and VBA (http://www.outlookbanter.com/outlook-vba/)
-   -   Detect the marked for deletion property (http://www.outlookbanter.com/outlook-vba/8408-detect-marked-deletion-property.html)

[email protected] March 15th 06 11:28 PM

Detect the marked for deletion property
 
I am using an IMAP email with Outlook 2003 and I don't know how to
detect if an email is "marked for deletion" (has a line through it).
IMAP folders are weird in that when you click Delete, it doesn't
actually go anywhere, it just gets a line through it. You then have to
click "Purge Deleted Messages" to really get rid of it. I want to be
able to run a script that finds all the messages that have been found
to be set for deletion, so that I can move them to a different folder
first.

Thanks!

Example Code:
----------------------------------------------------------
Sub MoveOldItems()
Dim olns As Outlook.NameSpace
Dim oConItems As Outlook.Items
Dim iNumItems As Integer

Set objNS = Application.GetNamespace("MAPI") '"Saved Emails"
Set oInboxItems = objNS.GetDefaultFolder(olFolderInbox).Items

Set objMainFolder = objNS.Folders("Personal Folders")
Set objTargetFolder = objMainFolder.Folders("Saved Emails")
Set Application.ActiveExplorer.CurrentFolder = objTargetFolder

iNumItems = oInboxItems.Count

For I = iNumItems To 1 Step -1
Set objCurItem = oInboxItems.Item(I)

If TypeName(objCurItem) = "MailItem" Then
' Move only mail messages

!!!!!----This is the part that I don't know how to do:
If objCurItem.MarkedForDelete Then
!!!!!------------------------------------------------------------------
objCurItem.Move objTargetFolder
End If
End If
Next

MsgBox "Finished moving items."

Set objInboxItems = Nothing
Set objTargetFolder = Nothing
Set objNS = Nothingessag

End Sub



All times are GMT +1. The time now is 07:04 PM.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2006 OutlookBanter.com