Hi Team,
When I am trying to update the planned start date and end date, it is gfetting changed automatically and showing some random datas.
I am using the below code to update
where Planned Start Date & End dates are coming from the list.
//Adding Start Date to the TASK.
if (taskItem.PlannedStartDt != null)
Task.Set(Tsk.Start, (DateTime)taskItem.PlannedStartDt);
//Adding Finish Date to the TASK.
if (taskItem.PlannedEndDt != null)
Task.Set(Tsk.Finish, (DateTime)taskItem.PlannedEndDt);
Please let me know How to fix this Issue.
Thanks
Abhishek Prasad