One more question austin.I is having a hard time creating Recurrent Events with the .net client libraries The problem I'm having is to specify the time start and end start. I have tried the Duration attribute to specify in seconds the time of the event. Also, I've checked the RFC document for some examples but even though they work, I have not seen an example that fits for the following scenario.
I have the following code Recurrence re = new Recurrence(); EventEntry entry = new EventEntry(); re.Value = "DTSTART;VALUE=DATE:20070901T090000\r\n" + "DTEND;VALUE=DATE:20070902T100000\r\n" + "RRULE:FREQ=WEEKLY;BYDAY=MO,WE,FR;UNTIL=20071102T100000\r\n"; The result of adding the following event is clearly shown in the following picture <IMG height=274 alt=Esteban50.1.JPG src="http:// extremeprogrammingteam.com/Portals/6/Esteban50.1.JPG" width=198 border=0> and the other option i;m trying is the following Recurrence re = new Recurrence(); EventEntry entry = new EventEntry(); re.Value = "DTSTART;TZID=US-Western:20070901T090000\r\n" + "DURATION:PT3600S\r\n" + "RRULE:FREQ=WEEKLY;BYDAY=MO,WE,FR;UNTIL=20071102T100000\r\n"; The result of adding the following event is clearly shown in the following picture <IMG height=233 alt=StartEnd2.JPG src="http:// extremeprogrammingteam.com/Portals/6/StartEnd2.JPG" width=556 border=0> I'm thinking that could be something with the Time zone, or perhaps another similar property that I'm missing. --~--~---------~--~----~------------~-------~--~----~ 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://groups.google.com/group/google-calendar-help-dataapi?hl=en -~----------~----~----~----~------~----~------~--~---
