Appointment Created from OutLook is not able to Edit /Cancel.

  • Thread starter Cancelled Appointment meeting status
  • Start date
C

Cancelled Appointment meeting status

Hi,

I am creating an appointment in my Outlook Plugin code with some recipients.
All the parameter I am setting to the Appointment items are shown correctly
in the calendar entry. I am adding parameters like
subject,recipients,StartTime,EndTime,Duration,Location. But when I edit or
cancel this appointment using the Outlook UI ( not from the program ) no mail
is sent to the recipients. The calendar entry is behaving as a self
appointment rather than as a meeting request.

Following is the code used to create the appointment.

OutLook.AppointmentItem oAppointment;
oAppointment.Subject = Appoint.Message.ToString();//"Snding App"
oAppointment.Location = Appoint.Location.ToString();//"XYZ"
oAppointment.Start = AppDateTime;//
oAppointment.Duration = Appoint.DurationInMin;//30 minutes
AppDateTime = AppDateTime.AddMinutes(Appoint.DurationInMin);
oAppointment.End=AppDateTime;
oAppointment.Recipients.Add([email protected]);//Receipient
oAppointment.MeetingStatus = OutLook.OlMeetingStatus.olMeeting;
oAppointment.Save();

Can someone help me to sole the Issue ?

-Jainish C S
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top