Questions tagged [dday]

DDay.iCal is an iCalendar class library written in C# and based on the RFC 2445 standard. It parses files in the iCalendar format and provides an object-oriented interface to iCalendar components: Event, Todo, TimeZone, Journal, FreeBusy, and Alarm.

49 questions
0
votes
2 answers

Google calendar incorrect imports DDay multiple-day events

I'm using a DDay library to create iCal file. Here's an example of one event that I created: BEGIN:VCALENDAR VERSION:2.0 METHOD:PUBLISH PRODID:-//MyProduct BEGIN:VEVENT CATEGORIES:Office event DESCRIPTION:Rudniy\, Kazahstan office has a work…
0
votes
2 answers

DDay iCal FileNotFoundException

This is my code: public Schedule(string vCalendar) { IICalendarCollection allEvents = iCalendar.LoadFromStream(new StringReader(vCalendar)); } The vCalendar string object is a .ical/.ics file that I read in. Why does this throw a…
Daniel Hitzel
  • 1,342
  • 2
  • 12
  • 27
0
votes
1 answer

Find last occurrence of an event in DDay.iCal

Suppose I have an iCalendar with a single event. This has a recurrence rule (RRULE) set with a COUNT to limit it, but also has some exception dates, and some exception rules. I want to calculate the date of the last occurrence. If the rules only had…
RB.
  • 36,301
  • 12
  • 91
  • 131
-1
votes
1 answer

Windowsphone 8.1 System.IO.FileNotFoundException dday.ical

I developing a windowsphone 8.1 application and use DDay.iCal libery. I included the libery over nuget. I like to load a calendar from a Stream. When I Load it i get the following error message: An exception of type 'System.IO.FileNotFoundException'…
Thomas Kaemmerling
  • 547
  • 1
  • 9
  • 19
1 2 3
4