Felix Collins wrote:
> Hi,
>
> I'm trying to assign a resource to a task in MS Project by using the
> example from MSDN for VB...
>
>
> "Use the Add method to add an Assignment object to the Assignments
> collection. The following example adds a resource identified by the
> number of 212 as a
Hi !
The parameter (ResourceID=2) is problematic
Try :
proj.Tasks(3).Assignments.Add(2)
@-salutations
Michel Claveau
--
http://mail.python.org/mailman/listinfo/python-list
Hi,
I'm trying to assign a resource to a task in MS Project by using the
example from MSDN for VB...
"Use the Add method to add an Assignment object to the Assignments
collection. The following example adds a resource identified by the
number of 212 as a new assignment for the specified task.