Tagged Questions
0
votes
1answer
162 views
prevent double calendar entry on same date and time programmatically
Can this be done programatically while saving a recurring entry?
1
vote
0answers
213 views
Check booking conflicts in sharepoint calendar programmatically to avoid overlap booking for recurring events
Is there a way to programmatically check a booking if already exist in sharepoint calendar?
I am saving recurring entries programmatically using the xml rule for recurrence as per this, for ...
1
vote
1answer
275 views
Expand recurrence and CalendarDate:Event EndDate not autocalculated for recurring events
I have done the following code to save a recurring entry to Calendar List named Bookings.
SPSite site = new SPSite(SPContext.Current.Web.Url);
using (SPWeb web = site.OpenWeb())
{
...
1
vote
1answer
65 views
Issue with adding recurring entries programatically in Sharepoint Calendar list
I am saving recurring calendar events programatically. Here is my code.
SPSite site = new SPSite(SPContext.Current.Web.Url);
using (SPWeb web = site.OpenWeb())
{
...