Thursday, March 3, 2011

How can I open other people's Outlook calendars from Perl?

I can access my calendar entries as:

$folder = $namespace->Folders("Joe Cool")->Folders("Calendar");

How do I open "Jane Cool" Calendar? Outlook shows that calendar as:

People's Calendar
   Jane Cool
From stackoverflow
  • I believe you are looking for the GetSharedDefaultFolder() method.

    lexu : hm, you point to some VB documentation .. as Leon before me, I'd appreciate some more context .. accessing my Outlook from Perl look intriguing ..
  • Have you tried looking at the whole $namespace datastructure?

    Try:

    use Data::Dumper;print Dumper $namespace;exit;

    somewhere shortly after $namespace gets created/initialised.

    Iain

0 comments:

Post a Comment