This function returns the external providers.
object.LoadExtProviders()
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfile interface |
Display the number of the providers and their full names.
Dim aExtProviders
Dim aExtProvider
Dim aMessage
Set aExtProviders = Profile.LoadExtProviders
aMessage = "External Providers Count = " & aExtProviders.Count
for i = 0 to aExtProviders.Count - 1
set aExtProvider = aExtProviders.Item(i)
aMessage = aMessage & vbNewLine & aExtProvider.FullName
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface External Provider can be found in
.