Purpose
Returns a string value which is the name of a privilege group.
The internal function FCGetPrivGroups must be called to initiate the privilege group list.
Syntax
FCPrivGroup (GroupNum)
GroupNum |
The ordinal number, starting at 0 or the current array base index, of the privilege group in the group list. |
Example
Sub Main()
Dim i As Integer
Dim NumGroups As Integer
NumGroups = FCGetPrivGroups
For i = 0 to NumGroups -1
Print FCPrivGroup(i)
Next
End Sub
|