Hi
When I set the recurrence using below code to a Mapi Task then it is showing 1 day earlier effective from while i had create a new Mapi Task with Start date 5/14/2015 and same as due date also. it should be the same on Task start date. Same behavior I feel with Microsoft Outlook.
Can you assist me to find out where i am wrong or what i am missing?
Below is the code,
// Set the daily recurrence
var rec = new MapiCalendarDailyRecurrencePattern
{
PatternType = MapiCalendarRecurrencePatternType.Day,
Period = 1,
WeekStartDay = DayOfWeek.Sunday,
EndType = MapiCalendarRecurrenceEndType.NeverEnd,
OccurrenceCount = 0,
};
Thanks in advance,
Vipin Panwar