![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
hello
Is there any way to delete appointmentItem permanently using redemption?Redemption.SafeAppointmentItem doesn't have delete method.please provide a code snippet if possible. Thanks |
Ads |
#2
|
|||
|
|||
![]()
Make sure the item is saved so it has an EntryID, get the EntryID and use
that with an RDOSession object to call RDOSession.GetMessageFromID(). That returns an RDOMail object, call that object's Delete() method. ' assume the Outlook appointment is oAppt: If oAppt.Saved = False Then oAppt.Save End If Dim id As String id = oAppt.EntryID Set oAppt = Nothing Set oSafeAppt = Nothing Set oRDO = CreateObject("Redemption.RDOSession") oRDO.MAPIOBJECT = olApp.GetNameSpace("MAPI").MAPIOBJECT Dim safMail As Redemption.RDOMail Set safMail = oRDO.GetMessageFromID(id) safMail.Delete -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders, Attachment Options. http://www.slovaktech.com/products.htm "sd" wrote in message ... hello Is there any way to delete appointmentItem permanently using redemption?Redemption.SafeAppointmentItem doesn't have delete method.please provide a code snippet if possible. Thanks |
#3
|
|||
|
|||
![]()
It worked ,Thanks Ken
|
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
delete appointmentItem permanently using redemption | s | Outlook - General Queries | 1 | May 8th 09 03:03 PM |
The sound has disappeared when I attempt to permanently delete ite | chief jay | Outlook - General Queries | 6 | November 10th 08 04:46 PM |
Button to permanently delete items? | petern | Outlook and VBA | 1 | October 31st 08 07:07 PM |
Delete message permanently. | Andy | Outlook Express | 14 | June 9th 07 06:41 PM |
Permanently delete a calendar | Stakkalee | Outlook - Calandaring | 0 | February 20th 07 03:50 PM |