Hello,
I'm trying to create a recurring event in VB.NET using the gData.NET 
library.  Going off of the example I have created an event and used the 
specified recurrence string for testing.  Here is the section of code that 
creates the recurrence.

'This is exactly as the tutorial shows except I have changed the dates to 
reflect times that will occur soon
                recurrStr = "DTSTART;VALUE=DATE:20110221\r\n" + _
                  "DTEND;VALUE=DATE:20110221\r\n" + _
                  "RRULE:FREQ=WEEKLY;BYDAY=Tu;UNTIL=20110315\r\n"

                Dim recurrence As New Recurrence()
                recurrence.Value = recurrStr
                myEntry.Times.Clear() '400 bad request returned if this 
isn't done
                myEntry.Recurrence = recurrence

After creating the event I expect to see an event starting on the 2/21/2011 
and repeating weekly on Tuesdays until 3/15/2011.  When I go to Google 
Calendar the event is there for 2/21; however, it does not repeat and when I 
click edit details it is not recognized as a recurring event.  Any help 
would be greatly appreciated.

Thanks,
Cory


-- 
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