H
huangbo74
Hi all,
I install conference add in in outlook which allow to schedule a live
meeting or conference call.
My old C# code is able to create a new meeting request or new appointment
via outlook ojbect model programming interface. now I want to add schedule a
live meeting functionality in my c# code, but I don't know how to do.
I use outlook spy to identify the message class of live meeting is
"IPM.Appointment.Live Meeting Request" and also it's belong to Appointment
Item.
I try to use to following code to do it, but it fails
olMeetingRequest = (Outlook.AppointmentItem)
m_olProvider.OlCalendarItems.Add(Outlook.OlItemType.olAppointmentItem);
olMeetingRequest.Subject = title;
olMeetingRequest.RequiredAttendees = to;
// set it to meeting request
olMeetingRequest.MeetingStatus = Outlook.OlMeetingStatus.olMeeting;
olMeetingRequest.MessageClass = "IPM.Appointment.Live Meeting Request" ;
// display
olMeetingRequest.Display(System.Reflection.Missing.Value);
Regards,
Bo
I install conference add in in outlook which allow to schedule a live
meeting or conference call.
My old C# code is able to create a new meeting request or new appointment
via outlook ojbect model programming interface. now I want to add schedule a
live meeting functionality in my c# code, but I don't know how to do.
I use outlook spy to identify the message class of live meeting is
"IPM.Appointment.Live Meeting Request" and also it's belong to Appointment
Item.
I try to use to following code to do it, but it fails
olMeetingRequest = (Outlook.AppointmentItem)
m_olProvider.OlCalendarItems.Add(Outlook.OlItemType.olAppointmentItem);
olMeetingRequest.Subject = title;
olMeetingRequest.RequiredAttendees = to;
// set it to meeting request
olMeetingRequest.MeetingStatus = Outlook.OlMeetingStatus.olMeeting;
olMeetingRequest.MessageClass = "IPM.Appointment.Live Meeting Request" ;
// display
olMeetingRequest.Display(System.Reflection.Missing.Value);
Regards,
Bo