ISExternalProvider.IsPassword

Description

This function checks if the external provider's specified password is correct.

Syntax

object.IsPassword(aPassword)

Part Attribute Type Description
object Required
The object always implements the ISExternalProvider interface
aPassword In, Required
string
The password to check

Return Value

bool

Returns True if the external provider's specified password is correct.

Example

Display IsPassword for the external provider.

Dim aExtProvider 
Dim aCode
Dim aMessage

aCode = "1"
Set aExtProvider = Profile.LoadExternalProvider(aCode)

if aExtProvider.ID = 0  then 
  aMessage = "No external provider with the specified code" 
else
  aMessage = aMessage & vbNewLine &_
    "Full Name:  " & aExtProvider.FullName & vbNewLine &_
    "Is Password: " & aExtProvider.IsPassword ("E1O763Z024IQ")
end if
 
Profile.MsgBox(aMessage)  
Note:

In Profile Client v8 on User Interface Password can be found and set in Organisation > External Providers > Basic > Internet > Password field.

Version information

Added in v7.8.0