Return 'Date Sent'

  • Thread starter Thread starter Dave Winters
  • Start date Start date
D

Dave Winters

How do I return the "Date Sent" of a message to a variable or message
prompt. Ex. MsgBox Me.DateSent

Me.Subject works, but I don't know how to reference the Sent object.
 
If this is form code then use Item.SentOn. Always use the intrinsic Item in
form code, it's a trusted object.

To see what is available in the way of methods, properties and events for
any Outlook object use the Object Browser.
 
Back
Top