I'm playing around with creating ICS calendar files to allow a PowerBASIC app to send calendar events to someone, where they would import the received calendar events into their own calendar.
For testing of the calendar events, I'm using the online validation tool at https://icalendar.org/validator.html#results
I've read that many calendar apps support the ICS file format and was able to import this sample calendar event into MS Outlook.
I just started playing with it last night and am still working through some online examples. The RFC 5545 specification covers the ICS file format.
From the spec, I missed the need to use "\n" at the end of lines and to have a blank space before follow-on text DESCRIPTION lines. I caught those requirements in a discussion I ran across.
Does anyone have any experience with using ICS files? Any tips to pass on?
For testing of the calendar events, I'm using the online validation tool at https://icalendar.org/validator.html#results
I've read that many calendar apps support the ICS file format and was able to import this sample calendar event into MS Outlook.
Code:
BEGIN:VCALENDAR VERSION: 2.0 PRODID: gbCalendar BEGIN:VEVENT UID:100001 DTSTAMP:20201112T100000 DTSTART:20201112T100000 DTEND:20201111T123000 DESCRIPTION:One for the money \n Two for the show \n Three to make ready and \n Four to GO! SUMMARY:Annual checkup with Dr. Smith END:VEVENT END:VCALENDAR
From the spec, I missed the need to use "\n" at the end of lines and to have a blank space before follow-on text DESCRIPTION lines. I caught those requirements in a discussion I ran across.
Does anyone have any experience with using ICS files? Any tips to pass on?
Comment