Clients.Item Property

The Clients.Item property returns a specific member of a collection object either by position or by key.

Syntax

Clients.Item varitem

Parameters

varitem

A numeric or String expression that specifies the position of a member of the collection.

Remarks

There are two equivalent ways to retrieve a member object from a collection object, as shown in the following example:

DIM clients as IMSrvClients
clients = MedialServer1.Clients
if clients(0).ID <> clients.Item(0).ID Then
   MsgBox "Something is terribly wrong."
End if

See Also

Clients object, Content Servers object, Content Server Disks object, Titles object, Walkers object

© 1996-1998 Microsoft Corporation. All rights reserved.