Macro names not available in script window

  • Thread starter Thread starter Jiles
  • Start date Start date
J

Jiles

I created a macro to save message details to MS Access. I want to run this
macro when the message is received based on a rule. The problem is when I
create the rule and select the run script option, none of the macros appear
in the Script window. What do I need to do to make this macro appear in the
window.
 
Your macro should follow this type of format:

Public Sub MyMacro(Item As Outlook.MailItem)
' whatever
End Sub
 
Back
Top