History |
FCPrivGroup (FirstClass internal functions)
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)
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
| ||||