I am doing .NET project having an event to be added in calendar, but
it is inserting to the Where field in Calendar while my reminder is
working well.
Below are the line of codes I used to insert to calendar.

 Reminder EmailReminder = new Reminder();
                EmailReminder.Days = 1;
                EmailReminder.Method = Reminder.ReminderMethod.email;
                entry.Reminders.Add(EmailReminder);
                entry.Reminders.Add(newReminder);

                if (ddlEvents.SelectedValue == "meeting")
                {
                    Where eventLocation = new Where("", "", "Sample
Address");
                    entry.Locations.Add(eventLocation);
                }

                AtomEntry insertedEntry = service.Insert(postUri,
entry);

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