DeletedItems properties not supported

  • Thread starter Thread starter Graham
  • Start date Start date
G

Graham

I am having a problem with catching deleted items (in order to sync a
users calendar with a public calendar). I am monitoring the
deleteditems folder using a mcolDeletedItems_ItemAdd(ByVal Item As
Object) construct, but I have run into a rather strange problem. I can
discover the subject of the deleted item by using Item.Subject, but if
I try to discover any more information than the subject (for example
Item.Start), then Outlook says that "the object does not support that
property or method".

Just before the item was added to the deleted items folder it was
perfectly possible to return the start time/duration etc from the
object, does anyone know why it is not possible once the item has been
moved?

thanks,

g
 
Check the Class property first to determine what kind of item it is.
 
Back
Top