View Single Post
  #1  
Old December 12th 06, 09:11 AM posted to microsoft.public.outlook.program_addins
OctopusThu
external usenet poster
 
Posts: 25
Default How to modify an AppointmentItem?

I got an AppointmentItem from an MAPIFolder and try to modify its fields. But
an exception occurred telling me that I had got no privilege to do this......

public void modifyItem(AppointmentItem item, CalItem calItem)
{
......
item.End = calItem.endTime; (Exception)
......
}

Ads