Detect Fwd MtgItem on Send event

  • Thread starter Thread starter Stephen F
  • Start date Start date
S

Stephen F

During the Send Event in VBA (Outlook 2003), I'm looking for a way
programmatically detect if a received MeetingItem being forwarded and sent on
behalf of a different Organizer than the Sender? MeetingItem is being
forwarded from an Inbox, AND is not necessary Accepted yet and on the
Calendar.
 
Until the item is actually sent the sender properties aren't filled in other
than SenderName. If you save the item in the Send() event handler you can
get that and the ConversationIndex and ConversationTopic properties. You can
then look for items with the same ConversationTopic (based on Subject) and
check for ConversationIndex length. Each new item in a conversation adds 6
bytes to the ConversationIndex (a date/time struct).
 
Back
Top