Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

vcalendar

Status
Not open for further replies.

jtaylorttt

Programmer
Mar 3, 2005
24
US
I have been reading on how to create a vcs file so that I can add a calendar event into outlook. Is there anyway, in delphi, once I create the file that I automatically load it into outlook
 
If no one knows how to work with the vcal file (vcs) maybe there is another way to do it.

From my application I want to add up to 3 entries to outlooks calendar. How do you do this? Can you do this all at once? Is there a way to tie these entries together?

thanks
 
Hi there,
I tried a similar thing. I found that you can put three entries in one vcs file but to succesfully get it into outlook, you have to import the file, not just double click the file. Here is my code:

Code:
BEGIN:VCALENDAR
PRODID:-//Microsoft Corporation//Outlook 11.0 MIMEDIR//EN
VERSION:1.0
BEGIN:VEVENT
DTSTART:20060516T230000Z
DTEND:20060516T233000Z
UID:040000008200E00074C5B7101A82E00800000000E046A2195078C6010000000000000000100
 0000024AECEC5347FB14E96AC3123AB7C8CFE
SUMMARY;ENCODING=QUOTED-PRINTABLE:Racket ophalen
PRIORITY:3
END:VEVENT

BEGIN:VEVENT
DTSTART:20060525T070000Z
DTEND:20060526T070000Z
TRANSP:1
UID:040000008200E00074C5B7101A82E00807D60519E070FC2D3271C6010000000000000000100
 000009FCC5B32023EDE40AF1C1FBF37CEFFBE
SUMMARY;ENCODING=QUOTED-PRINTABLE:Joke Jarig; 1971
PRIORITY:3
END:VEVENT
END:VCALENDAR

Pampers [afro]
Just let it go...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top