Filter rules to distinguish To and CC fields

  • Thread starter Martin Plechsmid
  • Start date
M

Martin Plechsmid

Hello,



I have the problem bellow, and was told (in another conference) that I have
to use VBA to solve it. I have two more questions:



1. How do I create a custom filter rule that will execute the VBA function I
create?



2. Will the filter rule run on server, or on (Outlook) client only?



Thank you,



Martin.





"Martin Plechsmid" has written in the news message
Hello,

I use Outlook 2007. I need messages with

To: Helpdesk
 
M

Michael Bauer [MVP - Outlook]

Outlook VBA runs on the client only. This kind of procedure can be called by
a rule:

Public Sub WhatEver(Mail as Outlook.MailItem)
' your code here
End Sub

In the procedure check for the item's To and CC properties, then call its
Move function.

--
Best regards
Michael Bauer - MVP Outlook

: Outlook Categories? Category Manager Is Your Tool
: VBOffice Reporter for Data Analysis & Reporting
: <http://www.vboffice.net/product.html?pub=6&lang=en>


Am Thu, 5 Nov 2009 16:18:20 +0100 schrieb Martin Plechsmid:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top