M
Marc
I grabbed the following snipped from Mr. Dahlgren's website:
For Each mytask In ActiveProject.Tasks
If Not (mytask Is Nothing) Then
mytask.Text12 = mytask.OutlineParent.Text12 & " | " & mytask.Name
End If
Next mytask
VB doesn't like this. It gives an '1101' project undefined error. I'm
thinking that you can't just concatenate the Text12 object that way. ( I
have no problem just setting mytask.Text12 = "taskname" as a test)
Am I correct and if so - how should I concatenate Text12 ?
For Each mytask In ActiveProject.Tasks
If Not (mytask Is Nothing) Then
mytask.Text12 = mytask.OutlineParent.Text12 & " | " & mytask.Name
End If
Next mytask
VB doesn't like this. It gives an '1101' project undefined error. I'm
thinking that you can't just concatenate the Text12 object that way. ( I
have no problem just setting mytask.Text12 = "taskname" as a test)
Am I correct and if so - how should I concatenate Text12 ?