Purpose
Opens the Permissions (ACL) form for a conference.
For convenience, the following constants are defined for use in assigning or returning custom permissions:
fcPermEditACL
fcPermModerator
fcPermDelete
fcPermCreate
fcPermEdit
fcPermWrite
fcPermEditWInfo
fcPermApprove
fcPermDeleteOwn
fcPermRead
fcPermSearch
fcPermSend
fcPermOpen
fcPermCrtConf
fcPermDownload
fcPermViewACL
fcPermViewHist
fcPermRevert
fcPermEnable
fcPermGetInfo
fcPermOpenByName
fcPermViewDates
Syntax
ServerFile.Permissions [, Index]
Index |
The integer that represents the conference whose permissions form is to be opened. If no index is specified, the permissions form of the current conference is opened. |
Example
Dim sd as ServerDirectory
Dim sf as ServerFile
sd.OpenAdmin("TestConf",fcListByName)
sd.OpenDesktop(sf)
sf.Permissions
sf.field(9,0) = "Roscoe P. Coltrane"
sf.Field(2202,0) = fcPermWrite OR fcPermRead ' Give read and write permissions
if (sf.Field(2202,0) AND fcPermRead) Then "Read permissions confirmed."
|