Hello,
In my program, I'm looping through a table and adding tasks with the code:
Task t = this.ultraCalendarInfo1.Tasks.Add(startDate, runTime, jobName, projKey);
When I run the program, some things show up as tasks and some show up as milestones. I don't want any milestones on the ganttview, only tasks. What could be the reason for this?
Hello clgroce,
I tried this and it always works fine for me so I attached my sample to this post for you. Please review it and feel free to let me know if I misunderstood you or if you have any other questions.
I am checking about the progress of this issue. Please let me know If you need any further assistance on this.
Hi Boris,
I discovered that the problem was certain tasks had a duration of zero, and were therefore being added as milestones. By adding a few milliseconds to the duration, they then we're added as tasks. Thank you for the assistance.