S
Sky
I want to watch over all appointment delete event and if the appointment is a special one, I will take some special actions.
I have found a way that can catch appointment delete action, not matter how many appointment selected.
The method is:
Dim withevents items as outlook.items
Set Items = Application.GetNamespace("MAPI").GetDefaultFolder(olFolderCalendar).Items
So I can get Items_itemremove event when delete appointment.
But Items_itemremove function has no parameters, so how can I get the current need delete appointment?
I have found a way that can catch appointment delete action, not matter how many appointment selected.
The method is:
Dim withevents items as outlook.items
Set Items = Application.GetNamespace("MAPI").GetDefaultFolder(olFolderCalendar).Items
So I can get Items_itemremove event when delete appointment.
But Items_itemremove function has no parameters, so how can I get the current need delete appointment?