필터 지우기
필터 지우기

How do I save an activex appointment to a different outlook calendar?

조회 수: 1 (최근 30일)
Eric
Eric 2014년 2월 4일
Found this tidbit of code on this forum that allowed me to create appointments in outlook. Now the challenge that I'm having is to redirect the output into a specific calendar that I can specify (as opposed to the default "My Calendar"). This unique calendar could then be saved and exported to a workgroup to share calendar items.
I need some help, because I'm not at all familiar with activex control. Thanks!!!
% Create the appointment object
appointment = h.CreateItem('olAppointmentItem')
% Set some common properties of the appointment object.
appointment.Subject = 'Myappointment'
appointment.Body = 'This appointment was created in MATLAB'
appointment.Location = 'myLocation'
appointment.Start = '04/26/2006'
appointment.End = '04/27/2006'
appointment.ReminderSet = 1
appointment.ReminderMinutesBeforeStart = 5
appointment.IsOnlineMeeting = 0
%Save the appointment
appointment.Save()

답변 (0개)

카테고리

Help CenterFile Exchange에서 Web Services에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by