I've written several macros to capture the forward events for right clicks, inspectors and explorer selection(1). I'm using Outlook 2007 and if multiple items are selected, when they are forwarded I can't seem to catch the event. I don't know what item it references for the forward event. I think it would be the explorer selection collection, but I can't seem to capture an event for the selection. Maybe I'm not setting it up properly. I want to make some changes to the forwarded item before it is sent.
Public WithEvents myCollection As Outlook.? (.Selection doesn't seem to have events. I tried .items but that doesn't work when I try to set myCollection to the selection)
and then
Set myCollection = Application.ActiveExplorer.Selection ?
Thanks in advance if anyone can help.
JJS
Public WithEvents myCollection As Outlook.? (.Selection doesn't seem to have events. I tried .items but that doesn't work when I try to set myCollection to the selection)
and then
Set myCollection = Application.ActiveExplorer.Selection ?
Thanks in advance if anyone can help.
JJS