ISProfile.LoadExternalProvider

Description

This function returns the external provider by code.

Syntax

object.LoadExternalProvider(aCode)

Part Attribute Type Description
object Required
The object always implements the ISProfile interface
aCode In, Required
string
The code of the provider

Return Value

ISExternalProvider

Returns the external provider by code.

Example

Display the full name of the external provider returned by the specified code.

Dim aExProvider
Dim aMessage

Set aExProvider = Profile.LoadExternalProvider("AHKIG")

if aExProvider.ID = 0 then
  aMessage = "There is no external provider with the specified code"
else
  aMessage = aExProvider.FullName
end if

Profile.MsgBox(aMessage) 
Note:

In Profile Client v8 on User Interface External Provider can be found in Organisation > External Providers.

Version information

Added in v7.8.0