Effacer les filtres
Effacer les filtres

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

2 vues (au cours des 30 derniers jours)
Nipurn Gulgulia
Nipurn Gulgulia le 9 Mai 2018
Commenté : Nipurn Gulgulia le 11 Mai 2018
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')

Réponses (1)

ES
ES le 10 Mai 2018
Modifié(e) : per isakson le 11 Mai 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 commentaires
Nipurn Gulgulia
Nipurn Gulgulia le 11 Mai 2018
Modifié(e) : Nipurn Gulgulia le 11 Mai 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 le 11 Mai 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

Connectez-vous pour commenter.

Catégories

En savoir plus sur Calendar dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by