PrtRegion.ProjectId (Property Read/Write)

Syntax

PrtRegion.ProjectId

Description

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

Example

dim prt as new PrtRegion
' Get a list of services from PRT and display them one by one
'    in a message box
prt.ProjectId = "\\project1"
prt.GetItemList
for j = 0 to prt.ItemCount - 1
       MsgBox prt.Item(j).ItemId
next j