ALM Open Test Architecture API Reference Version 12.55
List the names of the projects in a domain
Sub ProjectList()
'List the names of the projects in a domain
Dim pName
'tdc is the global TDConnection object.
ForEach pName In tdc.ProjectsListEx("Default")
Debug.Print pName
NextEnd Sub