Count

Count is the number of connections present in the lsxECLConnList. The Count property is a Long data type and is read-only. The following example shows this property.

dim myCMgrObj as new lsxECLConnMgr
dim myCListObj as lsxECLConnList
Set myCListObj = myCMgrObj.lsxECLConnList
 
dim numConns as Long
 
' Get a current snapshot of connections on the system
myCListObj.Refresh
 
' Get number of connections
numConns = myCListObj.Count