Hey Alain,
Thanks for replying to my issue!  I recreated the event and check to see 
what the recurrence string is after the EventEntry has been submitted to 
google.  I'm confused on why my returned recurrence string is not the same 
string I submitted.

Here is what I'm returned...

DTSTART;VALUE=DATE:20110221 DTEND;VALUE=DATE:20110222

Whereas this is what I submitted...
                recurrStr = "DTSTART;VALUE=DATE:20110221\r\n" + _
  "DTEND;VALUE=DATE:20110221\r\n" + _
  "RRULE:FREQ=WEEKLY;BYDAY=Tu;UNTIL=20110315\r\n"

The second recurrence string is taken from the example on the google 
calendar api tutorial site.  Any ideas on why it doesn't like the 3rd line 
of my recurrence rule?

Below is the example from the website...
http://code.google.com/apis/calendar/data/2.0/developers_guide_dotnet.html#CreatingRecurring

EventEntry myEntry = new EventEntry();

String recurData =
  "DTSTART;VALUE=DATE:20070501\r\n" +
  "DTEND;VALUE=DATE:20070502\r\n" +
  "RRULE:FREQ=WEEKLY;BYDAY=Tu;UNTIL=20070904\r\n";

Recurrence recurrence = new Recurrence();
recurrence.Value = recurData;
myEntry.Recurrence = recurrence;


-- 
You received this message because you are subscribed to the Google
Groups "Google Calendar Data API" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://code.google.com/apis/calendar/community/forum.html

Reply via email to