Previous | Next |
Returns the number of Channel objects in a Channels collection object.
Syntax
NSChannelMgr.Channels.Count
Example
NSChannelMgr.Connect "LocalHost"
Dim Stations
Set Stations = NSChannelMgr.Channels
For i = 0 to Stations.Count – 1
' Display station number and name
MsgBox ("Station " & Stations.Count " : " & _
Stations(i).Name)
Next i
See Also
Previous | Next |