Prt.ServiceCount (Property Read)

Syntax

Prt.ServiceCount

Description

Contains a count of the number of Service found with a prior GetServiceList call.

Example

Dim prt as new Prt
' Get a list of services from PRT
'    and display them one by one in a message box.
prt.GetServiceList
for j = 0 to prt.ServiceCount - 1
      MsgBox prt.Service(j).Id
next j