This function checks if the external provider's specified password is correct.
object.IsPassword(aPassword)
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISExternalProvider interface |
|
aPassword |
In, Required | string |
The password to check |
bool
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)
In Profile Client v8 on User Interface Password can be found and set in
.