Click here to Skip to main content
Licence BSD
First Posted 11 Mar 2007
Views 109,030
Downloads 572
Bookmarked 108 times

Adding iCalendar Support to Your Program - Part 1

By | 14 Apr 2010 | Article
This article describes the steps to load and view iCalendars in your program by using the DDay.iCal library
Screenshot - iCalendar_Part1.jpg

Introduction

This article describes how to load and view iCalendars by using the DDay.iCal library. I will cover more advanced topics, such as creating, editing, and serializing iCalendars in my next article.

In this article, I will walk you through creating a console application that will load and display upcoming events to the user. I've also included an example project that demonstrates how to add this kind of support to an ASP.NET web application.

Background

Many programmers have worked with adding some kind of calendar support to an application - from displaying upcoming events on a web site, to allowing personalized calendars, with the ability to alter them.

So, thousands of programmers, all adding calendar support to their applications. So, what's the problem with that? The historical answer is that no (or very few) programmers followed any kind of standard to implement their calendars. So, if you needed to accomplish anything else with the calendar that your original application didn't support, you'd have to write it by hand.

Also, these ad-hoc calendars are only viewable from the application that wrote them. What if you want to allow for recurrences in your calendar, so an event can recur "every 2nd-to-last Sunday of the month?" What if you want to publish your calendar, so others can subscribe to it, and view it from the calendar program they prefer? What if you want to display and manipulate calendars from multiple sources, including sources that you may not have control over?

These are some of the problems the iCalendar standard solves for us. If you didn't already know -- iCalendar is a W3C recommendation known as RFC 5545. You can find it here.

Using the Code

To begin, open Visual Studio and create a "Windows Console Application" project. Then, if you haven't already done so, download the latest binary version of DDay.iCal from SourceForge.net. Once you've done that, you simply need to add a reference to DDay.iCal.dll from your project (i.e. click "Add Reference" from the "Project" menu).

Then, add the following to the top of the Program.cs file:

using DDay.iCal;

You're now ready to load your first iCalendar! There are multiple ways you can load iCalendars, ranging from simply loading the file from your local filesystem, to loading from a WebDAV or CalDAV store, to loading from a database. The possibilities are endless; however, in this article, we'll focus on simply loading the file from your local filesystem. Add the following code to your Main() method (of course, replacing the path with the actual path to your iCalendar file).

// Load the calendar file
IICalendarCollection calendars = iCalendar.LoadFromFile(@"path\to\your\icalendar.ics");

Congratulations, you've loaded your iCalendar, and are ready to work with it! For now, let's display the events that occur today:

//
// Get all events that occur today.
//
IList&occurrence> occurrences = calendars.GetOccurrences
	(DateTime.Today, DateTime.Today.AddDays(1));

Console.WriteLine("Today's Events:");

// Iterate through each occurrence and display information about it
foreach (Occurrence occurrence in occurrences)
{
    DateTime occurrenceTime = occurrence.Period.StartTime.Local;
    IRecurringComponent rc = occurrence.Source as IRecurringComponent;
    if (rc != null)
        Console.WriteLine(rc.Summary + ": " + occurrenceTime.ToShortTimeString());
}

That's it! To be clear, calendars.GetOccurrences(...) returns a list of Occurrence objects. Occurrence objects describe each occurrence, including the date/time the occurrence happens, and a reference to the original component that generated the occurrence. We cast the Source of the occurrence to an IRecurringComponent, and display its properties.

So, now we've displayed all the events that occur today. Let's display all of the upcoming events that will occur within the next 7 days:

//
// Get all occurrences for the next 7 days, starting tomorrow.
//
occurrences = calendars.GetOccurrences
		(DateTime.Today.AddDays(1), DateTime.Today.AddDays(7));

Console.WriteLine(Environment.NewLine + "Upcoming Events:");

// Start with tomorrow
foreach (Occurrence occurrence in occurrences)
{
    DateTime occurrenceTime = occurrence.Period.StartTime.Local;
    IRecurringComponent rc = occurrence.Source as IRecurringComponent;
    if (rc != null)
        Console.WriteLine(rc.Summary + ": " + occurrenceTime.ToString());
}

As you can see, this code is nearly identical to "Today's Events", with a slight difference at calendars.GetOccurrences(...). We also display the full date/time of the recurrence this time.

Note: If you're only interested in certain kinds of components (i.e. Events, Todos, etc.), then you can get occurrences for only those events using the generic version of GetOccurrences (i.e. calendars.GetOccurrences<IEvent>(...)).

Final Code

Here's the final result of Program.cs:

using System;
using System.Collections.Generic;
using System.Text;

// Required DDay.iCal namespace
using DDay.iCal;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            // Load the calendar file
            IICalendarCollection calendars = iCalendar.LoadFromFile(@"Business.ics");

            //
            // Get all events that occur today.
            //
            IList&occurrence> occurrences = calendars.GetOccurrences
				(DateTime.Today, DateTime.Today.AddDays(1));

            Console.WriteLine("Today's Events:");

            // Iterate through each occurrence and display information about it
            foreach (Occurrence occurrence in occurrences)
            {
                DateTime occurrenceTime = occurrence.Period.StartTime.Local;
                IRecurringComponent rc = occurrence.Source as IRecurringComponent;
                if (rc != null)
                    Console.WriteLine(rc.Summary + ": " + 
				occurrenceTime.ToShortTimeString());
            }

            //
            // Get all occurrences for the next 7 days, starting tomorrow.
            //
            occurrences = calendars.GetOccurrences
		(DateTime.Today.AddDays(1), DateTime.Today.AddDays(7));

            Console.WriteLine(Environment.NewLine + "Upcoming Events:");

            // Start with tomorrow
            foreach (Occurrence occurrence in occurrences)
            {
                DateTime occurrenceTime = occurrence.Period.StartTime.Local;
                IRecurringComponent rc = occurrence.Source as IRecurringComponent;
                if (rc != null)
                    Console.WriteLine(rc.Summary + ": " + occurrenceTime.ToString());
            }
        }
    }
}

Points of Interest

For more information, visit the DDay.iCal homepage at ddaysoftware.com.

Many apologies that it's taken so long to update this article. I'll now be providing more frequent updates.

History

  • 04/14/2010 - Updated to version 1.0 Alpha
  • 03/09/2007 - Posted

License

This article, along with any associated source code and files, is licensed under The BSD License

About the Author

Douglas Day

Web Developer

United States United States

Member

Doug has been a Software Engineer for 7 of the previous 9 years, and has 12 years of programming experience.
 
For the past 3 years, he has been developing custom applications in C# and Visual Basic.NET, with an emphasis on custom cross-Internet applications for IT management, real-time collaboration, and process management and reporting.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionHelp for newbie with errors line 20 Pinmemberptsmh9:49 10 Nov '11  
GeneralSample or guidance on creating / reading VFREEBUSY Pinmemberrw_architect13:22 9 Sep '10  
GeneralRe: Sample or guidance on creating / reading VFREEBUSY PinmemberDouglas Day4:30 10 Sep '10  
GeneralRe: Sample or guidance on creating / reading VFREEBUSY Pinmemberrw_architect5:19 16 Oct '10  
GeneralRe: Sample or guidance on creating / reading VFREEBUSY PinmemberDouglas Day10:33 26 Oct '10  
GeneralVB.Net Example1 variable declaration errors... Pinmemberrw_architect17:07 5 Sep '10  
GeneralRe: VB.Net Example1 variable declaration errors... PinmemberDouglas Day5:09 7 Sep '10  
GeneralRe: VB.Net Example1 variable declaration errors... PinmemberDouglas Day5:18 7 Sep '10  
GeneralRe: VB.Net Example1 variable declaration errors... Pinmemberrw_architect12:55 9 Sep '10  
GeneralRe: VB.Net Example1 variable declaration errors... PinmemberDouglas Day13:00 9 Sep '10  
GeneralOT [ Bad tutorial link from your home page for DDay.Update] PinmemberGarth J Lancaster0:18 15 Apr '10  
GeneralWould be nice if article could be updated for version 0.80 Pinmembermanudurand1:52 14 Mar '10  
GeneralRe: Would be nice if article could be updated for version 0.80 PinmemberDouglas Day10:30 14 Mar '10  
GeneralRe: Would be nice if article could be updated for version 0.80 Pinmembermanudurand16:21 14 Mar '10  
GeneralRe: Would be nice if article could be updated for version 0.80 PinmemberDouglas Day17:01 14 Mar '10  
GeneralRe: Would be nice if article could be updated for version 0.80 Pinmembermanudurand19:50 14 Mar '10  
GeneralRe: Would be nice if article could be updated for version 0.80 PinmemberDouglas Day5:24 15 Mar '10  
GeneralRe: Would be nice if article could be updated for version 0.80 PinmemberDouglas Day6:06 15 Apr '10  
Questiongreat article Pinmemberjael369:55 24 Nov '09  
AnswerRe: great article PinmemberDouglas Day10:01 29 Dec '09  
GeneralThanks PinmemberMember 45575833:23 5 Aug '09  
GeneralRe: Thanks PinmemberDouglas Day4:12 5 Aug '09  
GeneralEvent.OccursOn and events that span two UTC days but is only 2 hours long Pinmemberi.i. wiin14:38 30 Apr '09  
GeneralRe: Event.OccursOn and events that span two UTC days but is only 2 hours long PinmemberDouglas Day14:53 30 Apr '09  
GeneralRe: Event.OccursOn and events that span two UTC days but is only 2 hours long Pinmemberi.i. wiin5:58 1 May '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 14 Apr 2010
Article Copyright 2007 by Douglas Day
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid