View Single Post
  #2  
Old February 5th 14, 01:02 AM
4Runner 4Runner is offline
Junior Member
 
First recorded activity at Outlookbanter: Feb 2014
Posts: 3
Thumbs up

Eric Legault [Outlook MVP] answered my question on another site/forum:

Use the PropertyAccessor to check for FInvited (http://schemas.microsoft.com/mapi/proptag/0x00620003); will equal true. Does not exist otherwise.

So, my Function to tell if a meeting has been sent is simply:

Function MeetingSent(oAppt As Variant) As Boolean
Dim PropName As String
Dim oPA As Outlook.PropertyAccessor

PropName = "http://schemas.microsoft.com/mapi/proptag/0x00620003"

'Obtain an instance of PropertyAccessor class
Set oPA = oAppt.PropertyAccessor

'Call GetProperty
MeetingSent = oPA.GetProperty(PropName)

End Function

Thanks Eric!
Ads