I coded an add-in for MS Project but I having some issues. In this add-in I have a loop that add tasks, but when my task has a predecessor that my loop doesnt created yet, the MS Project add this task automaticaly.
Lets supose my loop is creating task 5 and it have task 25 as predecessor. Ms Project will create the task 25 at position 6 (right after that one the looping is adding)
Microsoft.Office.Interop.MSProject.Project pj = this.Application.Projects.Add();
MSProject.Task newTask = pj.Tasks.Add("New Task", i);
newTask.Predecessors = "25";
The major problem is my task 6 (from loop) has task 5 as predecessor. This case give me a error (infinite loop of tasks).
Is there any way to add multiple tasks? Without loop? Or configure the add tasks from Predecessor.
Tks
I think you can create the all tasks and then add the task dependencies in other loop. It look like that: