I need to set the date format that appears at each end of the Gantt Bar. I've set the left and right fields for the bar successfully. But the default format is “1/09”, and I would like to change this to “Sun 7:00 AM".
I’ve tried using :
Project project = new Project(“MyProject.mpp”);
project.Set(Prj.DateFormat, DateFormat.DateDddHhMmAM);
But it doesn't work for me. Am I using the right approach?
Thanks...