View Single Post
  #81 (permalink)  
Old March 9th, 2006, 04:12 PM
salival salival is offline
Eager Mistic Beaver
 
Join Date: Feb 2005
Posts: 310
Almost all popular calendar programs can handle the iCalendar (*.ics) format in one way or another.
The basic structure of such file is as follows:
Code:
BEGIN:VCALENDAR
VERSION:2.0
METHOD:PUBLISH
BEGIN:VEVENT
UID:
DTSTAMP:20060310T000701
DTSTART:20060216T091500
DTEND:20060216T111500
SUMMARY:summary or subject
LOCATION:location
DESCRIPTION:description text
END:VEVENT
BEGIN:VEVENT
UID:
DTSTAMP:20060310T000701
DTSTART:20060216T124500
DTEND:20060216T141500
SUMMARY:summary or subject
LOCATION:location
DESCRIPTION:description
END:VEVENT
END:VCALENDAR
Just copy this into a text editor and save it as a *.ics file.

more info: link or if you're really hardcore: link

By default outlook can only export one appointment at a time. To export multiple appointments take a look at this script
__________________
"I can't die; I don't have a life"
portfolio

Last edited by salival : March 9th, 2006 at 04:22 PM.
Reply With Quote