Voting Response Report

  • Thread starter Thread starter rgoubet
  • Start date Start date
R

rgoubet

Hi,

I'd like to produce a printable voting response report for a given
voting e-mail. I understand the voting information can be retrieved
from the VotingResponse property, but as I have no knowledge of Outlook
programming (I only know Word and a little Excel), I have no idea how
to retrieve this value on the currently opened e-mail item.

Could anyone help me?

Thanks in advance.

Raph
 
The ActiveInspector object will give you access to the currently opened item
via the CurrentItem property:

Dim objMail As Outlook.MailItem

If ActiveInspector.CurrentItem.Class = olMailItem Then
Set objMail = ActiveInspector.CurrentItem
MsgBox "Voting Response: " & objMail.VotingResponse
End If
 
Thanks. Strangely, the VotingResponse property returns an empty string,
although the tracking tab of the mail does contain information...
 
Back
Top