Azzera filtri
Azzera filtri

How to get meeting timing from outlook calendar for a particular day?

2 visualizzazioni (ultimi 30 giorni)
I want to write a script which will give user all the meetings scheduled for a particular day!
h = actxserver('outlook.Application')
namespace = h.GetNamespace('MAPI');
Calendars = namespace.GetDefaultFolder('olFolderCalendar')

Risposte (1)

ES
ES il 10 Mag 2018
Modificato: per isakson il 11 Mag 2018
You may use
Calendars.Items.GetFirst,
Calendars.Items.GetNext,
Calendars.Items.GetLast
etc.
Example:
>> Calendars.Items.GetLast.Duration
ans =
120
>> Calendars.Items.GetLast.Start
ans =
9/20/2016 10:30:00 AM
>> Calendars.Items.GetLast.End
ans =
9/20/2016 12:30:00 PM
  2 Commenti
Nipurn Gulgulia
Nipurn Gulgulia il 11 Mag 2018
Modificato: Nipurn Gulgulia il 11 Mag 2018
Thank you very much. :) Can you also tell me how to get meeting data for a particular date ? I tried few things but not able to do without comparing every date with required one!
Nipurn Gulgulia
Nipurn Gulgulia il 11 Mag 2018
By this way, i am not able to get info of all the meetings if there is more than one meetings on a particular day!
x = Calendars.Items;
while ~strfind( x.GetNext.Start, '5/4/2018')
x.GetNext.Start;
end

Accedi per commentare.

Community Treasure Hunt

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

Start Hunting!

Translated by