Integrate PlanningPME into your management system
Target Skills put at your disposal the Object model of PlanningPME located on the complement COM PlanningPME.dll that can be used in most of developing tools.
Tasks, Unavailabilities, Customer, Equipment, Resource, Department, Project, DoTask, DoUnavailabilities represent the collections of the related objects.
To work with objects of the object model, you must first declare a variable object and establish a reference to the object you want to work with.
Once you have established a reference to the object, you can work with its properties, methods or events.
Dim pp As PlanningPME.Application
Set pp = New PlanningPME.Application
You can also use a function CreateObject with a variable object declared as type Object to initialize a variable Object late.
As an example:
Dim pp As Object
Set pp = CreateObject("PlanningPME.Application")
Dim r As Resource
Set r = pp.CreateItem(PpResource)
r.Label = "new Resource"
r.Type = PpResourceHuman
r.Save
Set r = Nothing
Set pp = nothing