![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
Can someone let me know how to delete four messages in a Folder? I have tried
to find information on it but there is not VBA code samples. Use the code below but it does not delete all the messages. For Each MailItem In MyFolder.Items Debug.Print MailItem.Delete Next MailItem Any suggestions and/or guidance will be helpfull. Luis |
Ads |
#2
|
|||
|
|||
![]()
Do not use for each or a loop from 1 to Items.Count since deleting will
change the count. Use "for i=Items.Count to 1 step -1" instead -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "Luis" wrote in message ... Can someone let me know how to delete four messages in a Folder? I have tried to find information on it but there is not VBA code samples. Use the code below but it does not delete all the messages. For Each MailItem In MyFolder.Items Debug.Print MailItem.Delete Next MailItem Any suggestions and/or guidance will be helpfull. Luis |
#3
|
|||
|
|||
![]()
You need to use a countdown loop instead:
c = MyFolder.Items.Count For i = c to 1 Step -1 Set MailItem = MyFolder.Items(i) MailItem.Delete Next -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Luis" wrote in message ... Can someone let me know how to delete four messages in a Folder? I have tried to find information on it but there is not VBA code samples. Use the code below but it does not delete all the messages. For Each MailItem In MyFolder.Items Debug.Print MailItem.Delete Next MailItem Any suggestions and/or guidance will be helpfull. Luis |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Can't Delete Message | longmere | Outlook Express | 5 | June 29th 08 05:05 PM |
Can't delete a 19 meg. message | TC | Outlook Express | 1 | January 27th 08 11:02 PM |
Outlook does not want to delete message | Deon | Outlook - General Queries | 4 | February 23rd 07 08:19 PM |
How do you delete a message from a Newsgroup? | SHERRY MANZANO | Outlook Express | 7 | May 27th 06 09:59 PM |
Message Delete Won't Work | Alex W. | Outlook Express | 4 | May 23rd 06 08:11 PM |