Purpose
Opens the Directory view of the users currently accessing a container that was opened using a supplied server file.
The Directory list is managed by the presence settings and is identical to the client's presence view for containers.
Syntax
ServerDirectory.OpenPresence ( ServerFile )
Example
Dim sfContainer as ServerFile
Dim sd as ServerDirectory
sfContainer.OpenFile ("Conferences | TestConf", fcRead)
sd.OpenPresence (sfContainer)
sd.FindFirst ("*")
Do While sd.FullName <> ""
Debug sd.FullName
sd.FindNext
Loop
|