Thales750
01-17-2011, 05:30 AM
In a multiple predecessor task list; If you desire to see the whole picture, it become problematic. I suspect the Microsoft Tree Control would lend itself to displaying this structure. If it would work, does anyone know where one is located that I could examine?
Multiple predecessor task list, a simple way to create this list is to use a link table.
tblTask
TaskID
TaskDescription
TaskWhateverOtherElse
tblTaskSusTask
TaskSubTaskID
TaskID ‘This is a foreign key from tblTask and defines the task
SubtaskID ‘This is a foreign key from tblTask and defines the sudtask
As you can see you can create an infinitely deep relationship between and infinite number of task with an infinite number of predecessors. If you need to display a single connection, a simple form with related subforms will manage this structure.
However we need a way to see the big picture
Years ago we had a C# applet that would translate the data to MS Project and use the display but that app was dedicated to a single structure and that C# programmer is no longer available.
Multiple predecessor task list, a simple way to create this list is to use a link table.
tblTask
TaskID
TaskDescription
TaskWhateverOtherElse
tblTaskSusTask
TaskSubTaskID
TaskID ‘This is a foreign key from tblTask and defines the task
SubtaskID ‘This is a foreign key from tblTask and defines the sudtask
As you can see you can create an infinitely deep relationship between and infinite number of task with an infinite number of predecessors. If you need to display a single connection, a simple form with related subforms will manage this structure.
However we need a way to see the big picture
Years ago we had a C# applet that would translate the data to MS Project and use the display but that app was dedicated to a single structure and that C# programmer is no longer available.