![]() |
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 |
#2
|
|||
|
|||
![]()
Here's a macro that's folder independant. Just select the messages that you
want to forward and run it: Sub ForwardSelectedMessages() On Error Resume Next Dim objItem As Object Dim objForward As Outlook.MailItem For Each objItem In ActiveExplorer.Selection If objItem.Class = olmail Then Set objForward = objItem.Forward objForward.To = " objForward.Send Set objItem = Nothing Set objForward = Nothing End If Next Set objItem = Nothing Set objForward = Nothing End Sub -- Eric Legault (Outlook MVP, MCDBA, old school WOSA MCSD, B.A.) Try Picture Attachments Wizard for Outlook: http://www.collaborativeinnovations.ca Blog: http://blogs.officezealot.com/legault/ "Dong Gaofeng" wrote: dear all, inbox |--mailbox_A |--mailbox_B |--mailbox_C how can I use VBA to forward all mails in mailbox_C to another email?? thank you~ |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Hotmail forward to Outlook XP? | ~~Nightcrawler~~ | Outlook - General Queries | 2 | March 30th 06 05:10 AM |
Using VBA for Outlook and VBA for Access within Access | Sardonic | Outlook and VBA | 1 | March 17th 06 12:34 PM |
I just deleted the some 6000 posts......... | Yolanda Martin | Outlook Express | 6 | February 3rd 06 12:02 AM |
Forward all e-mails from Outlook | Maxim Kazitov | Add-ins for Outlook | 1 | January 15th 06 10:43 PM |
Forward e-mail from Outlook | Maxim Kazitov | Outlook - General Queries | 3 | January 13th 06 01:37 PM |