Purpose
Opens the User Information Form 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 User Information Form and can be used like any other opened server file.
Syntax
ServerDirectory.OpenUserInfo ( ServerFile [, Index] )
Index |
The integer that represents the user in the Directory. |
Example
Dim sfDesktop as ServerFile
Dim sd as ServerDirectory
sd OpenUSerInfo (sfUIF)
Debug "Create date: " & MacDateToDate (sfUIF.Field (1235) )
|