CimSystemList (object)

Obsolete interface - use CimProjectList - Contains a list of all broadcasting CIMPLICITY projects.
Description: Obsolete interface use CimProjectList
The CimSystemList object can be used to get a list of CIMPLICITY projects that are broadcasting on the network.

Examples

Sub Main()
   Dim systems As CimSystemList
   Set systems = CreateObject("CimSystem.SystemList")
   Dim b As Boolean
   Dim node As String
   Dim project As String
   b = systems.GetFirstSystem(node, project)
   While b = True
      Trace project & " " & node
b = systems.GetNextSystem(node,project)
   Wend
End Sub
Properties:
Methods: GetFirstSystem , GetNextSystem