Purpose
This is a debugging tool that lists all server objects currently opened by the server file object.
Output is sent to the FCAS console.
Syntax
ServerFile.DumpOpenObjects
Example
Dim sf as ServerFile
sf.OpenFile("TestFile",fcRead)
sf.OpenFile("TestFile2",fcRead)
sf.DumpOpenObjects
|