How can I open other Outlook calendars with Perl?
I can access my calendar entries as:
$folder = $namespace->Folders("Joe Cool")->Folders("Calendar");
How do I open the "Jane Cool" calendar? Outlook shows the calendar as:
People Calendar
Jane Cool
+1
Rajgoel
source
to share
2 answers
I believe you are looking for the GetSharedDefaultFolder () method .
+2
Zoredache
source
to share
Have you tried looking at the entire data structure of the namespace?
Try:
use Data :: Dumper; print Dumper $ namespace; exit;
sometime soon after namespace creation / initialization.
Iain
0
bigiain
source
to share