PrtItem.ProjectId (Property Read/Write)

Syntax

PrtItem.ProjectId

Description

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

Example

Dim prt as new PrtItem
' Get a list of services from PRT and display them one by one
'    in a message box
prt.ProjectId = "\\project1"
for j = 0 to 19
        index$ = CSTR(j)
        prt.SetAttr "NAME" & index$, "Val" & index$
next j