Previous | Next |
Finds a Channel object with a specific name.
Syntax
NSChannelMgr.Channels.Find( StationName )
Parameters
StationName
A String value specifying the name of the station to be found.
Return Values
Returns a Channel object.
Example
NSChannelMgr.Connect "LocalHost"
' Find station named OHlive
Set AStation = NSChannelMgr.Channels.Find( "OHlive" )
' Give it a description
AStation.Description = "Live rex from Opera House"
Previous | Next |