in reply to Re: Outlook Write to Calendar
in thread Outlook Write to Calendar
use Win32::OLE; use Win32::OLE::Const 'Microsoft Outlook'; # Connection to Outlook Calendar my $outlook = Win32::OLE->new('Outlook.Application') or die "Error!\n"; my $namespace = $outlook->GetNamespace("MAPI"); my $app = $namespace->CreateItem(olAppointmentItem); my $CalendarFolderItems = $app->Items;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Outlook Write to Calendar
by blm (Hermit) on Dec 20, 2005 at 03:02 UTC |