It's a ReportItem. You should never assume that all the items in any Outlook folder are the same item type. You can use TypeOf to determine the type of a generic Object variable, then cast to a specific variable appropriately.
--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
"Roger" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
>I have a program that goes through an outlook inbox.
>
> Dim myItem as Outlook.MailItem
>
> For i = 1 to items.count
> myItem = myolap.items(i)
> ...
> ....
> ....
> Next
>
> I get a cast error exception when I get to a "Undeliverable:" in the inbox.
> How do I look at the type of item before assigning?
>
> Also what type is an Undeliverable?
>
> Thanks,
>
> Roger
>
>
>
>
>