Do you mean "deleted" as in "resides in the Deleted Items folder"?
set Namespace = outlook.GetNamespace("MAPI")
set DelItems = Namespace.GetDefaultFolder(olFolderDeletedItems)
set Item = Namespace.GetItemFromID("123")
BoolDeleted = (Item.Parent.EntryID = DelItems.EntryID)
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
> hello,
> i locate the calender item with
[quoted text clipped - 3 lines]
> but how can i check
> is this item deleted or not?