Page 1 of 1

Outlook calendar API in PB

Posted: Wed Dec 05, 2018 11:06 am
by IceBite
Hello,

im looking for a API or something like comateplus to create Outlook calendar events with my PB programm.

Maybe someone could give me a hint :D

Greetings IceBite

Re: Outlook calendar API in PB

Posted: Wed Dec 05, 2018 1:11 pm
by RSBasic
If you want to create appointments, you can create an iCalendar file (*.ics) to import into Outlook.
Example:

Code: Select all

BEGIN:VCALENDAR
VERSION:2.0
PRODID:http://www.example.com/calendarapplication/
METHOD:PUBLISH
BEGIN:VEVENT
UID:461092315540@example.com
ORGANIZER;CN="Alice Balder, Example Inc.":MAILTO:alice@example.com
LOCATION:Irgendwo
GEO:48.85299;2.36885
SUMMARY:Eine Kurzinfo
DESCRIPTION:Beschreibung des Termines
CLASS:PUBLIC
DTSTART:20060910T220000Z
DTEND:20060919T215900Z
DTSTAMP:20060812T125900Z
END:VEVENT
END:VCALENDAR

Re: Outlook calendar API in PB

Posted: Wed Dec 05, 2018 1:17 pm
by spikey

Re: Outlook calendar API in PB

Posted: Wed Dec 05, 2018 4:01 pm
by IceBite
Thank you very much :mrgreen: