Purpose
Opens the résumé of a user in the Directory.
You can access a user directly by index. If the index is out of bounds, a runtime error is generated.
If no index is supplied, FindFirst/FindNext results are assumed.
The server file provided will be open to the résumé and can be used like any other opened server file.
Syntax
ServerDirectory.OpenResume ( ServerFile [, Index] )
Index |
The integer that represents the user in the Directory. |
Example
Dim sfDesktop as ServerFile
Dim sd as ServerDirectory
sd OpenResume (sfResume)
Debug "Resume phone number: " & sfResume.Field (1007)
|