T
thiruvarul
I am into development of an Add-in to MS Project wit
Microsoft.Office.Interop.MSProject - Application class. I am using th
following code in C# to fetch the finish date of the task.
ApplicationClass ProjApp = new ApplicationClass();
Task tks;
Project proj = ProjApp.ActiveProject;
DateTime dateEnd;
foreach(Task tasks in proj.Tasks)
{
tks = proj.Tasks[tasks.ID];
dateEnd = Convert.ToDateTime(tasks.Finish);
}
When I compare the dateEnd values with the MS Project mpp file Finish
sometime I am receiving wrong Finish date, if any of you facing
similar issue and any fix available please provide me ASAP
Microsoft.Office.Interop.MSProject - Application class. I am using th
following code in C# to fetch the finish date of the task.
ApplicationClass ProjApp = new ApplicationClass();
Task tks;
Project proj = ProjApp.ActiveProject;
DateTime dateEnd;
foreach(Task tasks in proj.Tasks)
{
tks = proj.Tasks[tasks.ID];
dateEnd = Convert.ToDateTime(tasks.Finish);
}
When I compare the dateEnd values with the MS Project mpp file Finish
sometime I am receiving wrong Finish date, if any of you facing
similar issue and any fix available please provide me ASAP