in reply to Re(5): Creating entries in an Outlook Calendar
in thread Creating entries in an Outlook Calendar
my $Folder = $namespace->Folders("Personal Folders"); my $Items = $Folder->Items; my $sheetcnt = $namespace->Folders->Count(); foreach (1..$sheetcnt){ $Folder = $namespace->Folders($_)->{Name}; print "\t" .$Folder ."\n"; # my $subfolder = $namespace->Folders($Folder)->MAPIFolder->Count(); # foreach (1..$subfolder){ # print "\t" .$namespace->Folders($Folder)->MAPIFolder($_)->{Name +}. "\n"; # } }
Having checked the Outlook Object Model from the reference helpfully supplied by this site, MAPIFolder does seem to be the next level down, so I am not sure where I am going wrong.my $subfolder = $namespace->Folders($Folder)->MAPIFolder->Count();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re(7): Creating entries in an Outlook Calendar
by dmmiller2k (Chaplain) on Apr 23, 2002 at 13:26 UTC | |
|
Re: Re: Re(5): Creating entries in an Outlook Calendar
by lumina (Novice) on Apr 26, 2002 at 16:52 UTC |