PrtGroup.ProjectId (Property Read/Write)

Syntax

PrtGroup.ProjectId

Description

String property to set the project that subsequent Production Tracking extensions will communicate with.

Example

Dim prt as new PrtGroup
' Get a list of services from PRT
'    and display them one by one in a message box.
prt.ProjectId = "\\project1"
prt.GetRegionList
for j = 0 to prt.RegionCount - 1
      MsgBox prt.Region(j).Id
next j