Each of the provider groups within the collection.
object.Items(aIndex)
| Part | Attribute | Type | Description |
|---|---|---|---|
object |
Required | The object always implements the
ISProviderGroups interface |
|
aIndex |
In, Required | int |
The index of the provider group |
Display the number of the provider groups loaded on the basis of the selected filter and display their names and IDs.
Dim aFilter
Dim aProviderGroups, aProviderGroup
Dim aMessage
Dim i
Set aFilter = Profile.CreateProviderGroupFilter
aFilter.Code = "APP"
set aProviderGroups = Profile.LoadProviderGroups(aFilter)
aMessage = "Provider Groups Count = " & aProviderGroups.Count
for i = 0 to aProviderGroups.Count - 1
set aProviderGroup = aProviderGroups.Items(i)
aMessage = aMessage & vbNewLine &_
"Provider group '" & aProviderGroup.Name & "' has ID = " & aProviderGroup.ID
next
Profile.MsgBox(aMessage) In Profile Client v8 on User Interface Provider Groups can be found in .