Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Outlook Write to Calendar

by blm (Hermit)
on Dec 20, 2005 at 03:50 UTC ( [id://517959]=note: print w/replies, xml ) Need Help??


in reply to Outlook Write to Calendar

Adding appointment to outlook
#!c:/perl/bin/perl.exe -w use strict; 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 $newappt = $outlook->CreateItem(olAppointmentItem); $newappt->{Subject} = "My Test Appointment"; $newappt->{Start} = "12/21/05 3:50:00 PM"; $newappt->{Duration} = 1 ; #1 minute $newappt->{Location} = "Someplace"; $newappt->{Body} = "Test Stuff"; $newappt->{ReminderMinutesBeforeStart} = 1; $newappt->{BusyStatus} = olFree; $newappt->Save();

I wonder if people would be interested in a tutorial on translating vb/vbscript to perl and Win32::OLE. Then we can just point them to such a tutorial and the zillion vbscript/vb samples on the Internet. hmmm...

Replies are listed 'Best First'.
Re^2: Outlook Write to Calendar
by nanojack (Initiate) on Dec 20, 2005 at 13:56 UTC
    Thank you for the informaiton. I think that a tutorial on translating vb/vbscript to perl and Win32::OLE would be a greate idea.
    -How important does a person have to be before they are considered assassinated instead of just murdered?
Re^2: Outlook Write to Calendar
by Anonymous Monk on Apr 15, 2011 at 01:08 UTC
    Thanks alot guys this code works just fine....

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://517959]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (4)
As of 2024-04-19 16:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found