A "run a script" rule action requires a VBA procedure with a MailItem or MeetingItem as its parameter. That item is processed by the code:
Sub RunAScriptRuleRoutine(MyMail As MailItem)
Dim strID As String
Dim olNS As Outlook.NameSpace
Dim msg As Outlook.MailItem
strID = MyMail.EntryID
Set olNS = Application.GetNamespace("MAPI")
Set msg = olNS.GetItemFromID(strID)
' do stuff with msg, e.g.
MsgBox msg.SUbject
Set msg = Nothing
Set olNS = Nothing
End Sub
See
http://www.outlookcode.com/d/code/zaphtml.htm#ol2002 for another example.
FYI, there is a newsgroup specifically for general Outlook programming issues "down the hall" at microsoft.public.outlook.program_vba or, via web interface, at
http://www.microsoft.com/office/comm...ok.program_vba
--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
"R C" <(E-Mail Removed)> wrote in message news:16A21063-EA52-48DC-B74B-(E-Mail Removed)...
> hi,
> i have a macro and i'm trying to set a rule. i selected to run a script
> when the rule executes but i don't see the macro listed in the script list.
> Please help?