Indicates a client began scanning a file (fast forward or fast reverse).
Syntax
NSUnicastMgr_OnClientStride( datetime, status, clientid, filename )
Parameters
datetime
A Date value indicating the time the event occurred, expressed in Greenwich Mean Time (GMT).
status
A Long value specifying the HRESULT passed back when this event is fired.
clientid
A Long value specifying the client ID.
filename
A String containing the name of the title the client is scanning.
Remarks
This event is called whenever a client (using the NetShow Player or client control) begins scanning a title. To receive notification of this event, the ClientEvents property must first be set to TRUE.
Example
Sub NSUnicastMgr_OnClientStride(datetime, status, clientid, filename)
' message box opens if a client begins scanning
MsgBox( "client " & clientid " scanning through " & filename )
End Sub
See Also
OnClientConnect, OnClientDisconnect, OnClientPlay, OnClientStop
© 1996-1998 Microsoft Corporation. All rights reserved.