Dim objOutlookApp As Outlook.Application
Dim objMapiFldr As Outlook.MAPIFolder
Dim objReportItem As Outlook.ReportItem
Dim intCounter As Integer, strProperty As String
Set objOutlookApp = New Outlook.Application
Set objMapiFldr =
objOutlookApp.GetNamespace("MAPI").Session.Folders("Mailbox").Folders("Inbox
")
For intCounter = 1 To objMapiFldr.Items.Count
Set objReportItem = objMapiFldr.Items.Item(intCounter)
strProperty = objReportItem.Body
MsgBox strProperty
Next
Set objMapiFldr = Nothing
Set objReportItem = Nothing
I'm not sure why the Body property is available if it cannot be accessed.
Any help would be appreciated.
Thank you,
Jason Kemp
jk...@thedebtsolution.com
--
Sue Mosher, Outlook MVP
Outlook and Exchange Solutions
at http://www.slipstick.com
"Jason Kemp" <jk...@thedebtsolution.com> wrote in message news:O6CAHPOsBHA.2452@tkmsftngp03...