Bharathi
2007-08-03 10:30:36 UTC
Hi,
I am trying to send a response the outlook meeting request
programmatically.
I am using C#.net (VS 2005) for developing an add-in for outlook 2003.
Here is my Code:
Outlook.AppointmentItem aapp = (obj as
Outlook.MeetingItem).GetAssociatedAppointment(true);
aapp.MeetingStatus = Outlook.OlMeetingStatus.olMeetingReceived;
aapp.Respond(Outlook.OlMeetingResponse.olMeetingAccepted, true,
true);
aapp.Save();
aapp.Send();
I am able to send the response.. However the "Sent Items" folder is
not getting updated.
Some one please let me know where am I going wrong..
Regards,
Bharathi
I am trying to send a response the outlook meeting request
programmatically.
I am using C#.net (VS 2005) for developing an add-in for outlook 2003.
Here is my Code:
Outlook.AppointmentItem aapp = (obj as
Outlook.MeetingItem).GetAssociatedAppointment(true);
aapp.MeetingStatus = Outlook.OlMeetingStatus.olMeetingReceived;
aapp.Respond(Outlook.OlMeetingResponse.olMeetingAccepted, true,
true);
aapp.Save();
aapp.Send();
I am able to send the response.. However the "Sent Items" folder is
not getting updated.
Some one please let me know where am I going wrong..
Regards,
Bharathi