OnChannelStreamChange Event

This event is fired when a station has a new Stream object associated with it.

Syntax

NSChannelMgr_OnChannelStreamChange( Station, OldStream, NewStream )

Parameters

Station

A Channel object.

OldStream

The old stream object.

NewStream

The new stream object.

Remarks

If a stream did not exist before, a Null or Nothing value will be returned.

Example

Sub NSChannelMgr_OnChannelStreamChange (MyStation, OldSream, NewStream)
   Str = "Station " & MyStation.Name & " stopped playing "
   Str = Str + OldStream.Alias " and is now playing " & NewStream.Alias
   MsgBox Str
End Sub
© 1996-1998 Microsoft Corporation. All rights reserved.