Small company logo:
   History
 
Advertising banner:
 
 FCGetPrivGroups
Home • Help • Customization Tools • FCAS • Language Reference • FCGetPrivGroups
 
Purpose
Returns the FirstClass server's privilege group list into the FCPrivGroup array.
FCGetPrivGroups returns an integer indicating the total number of privilege groups in the current FirstClass server.
After calling FCGetPrivGroups, an application can access the FCPrivGroup array to return the names of the server's privilege groups.
Syntax
FCGetPrivGroups
Example
Sub Main()
        Dim i As Integer
        Dim NumGroups As Integer
        NumGroups = FCGetPrivGroups
        MsgBox(FCPrivGroup(1))
End Sub