I am going off an example in the api ref guide to ad a reminder

   Reminder fifteenMinReminder = new Reminder();
            fifteenMinReminder.Minutes = 15;
            fifteenMinReminder.Method = Reminder.ReminderMethod.email;
            entry2.Reminders.Add(fifteenMinReminder);
            entry2.Update();


It compiles, but when I run i get an exception at
entry2.Reminders.Add(fifteenMinReminder);,  because
the Reminders collection is null,
Is there a trick to getting the collection to not be null when I
instantiate the entry??

thanks


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

Reply via email to