Voting Response Report

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
 
G

Guest

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
 
R

rgoubet

Thanks. Strangely, the VotingResponse property returns an empty string,
although the tracking tab of the mail does contain information...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top