ISProfile.FindExtProviderByName

Description

This function returns the external provider by the specified name.

Syntax

object.FindExtProviderByName(aName)

Part Attribute Type Description
object Required
The object always implements the ISProfile interface
aName In, Required
string
The name of the external provider

Return Value

ISExternalProvider

Returns the external provider by the specified name.

Example

The full name of the external provider and the speciality description.

Dim aExtProvider
Dim aMessage

Set aExtProvider = Profile.FindExtProviderByName("Dr C Radloff")

if aExtProvider is nothing then
aMessage = "There is no provider with the specified name"
else
aMessage = "Full Name: " & aExtProvider.FullName & " " & vbNewLine &_
  "Speciality: " & aExtProvider.SpecialtyDescription
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