ISExternalProvider.PasswordForceChange

Description

Returns True if the external provider is prompted to change the password.

Syntax

object.PasswordForceChange

Part Attribute Type Description
object Required
The object always implements the ISExternalProvider interface

Return Value

bool

Example

Display PasswordForceChange for the external provider.

Dim aExtProvider 
Dim aCode
Dim aMessage

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

if aExtProvider.ID = 0  then 
  Profile.MsgBox("No external provider with the specified code")
  exit sub   
end if

aMessage = aMessage & "FULL NAME:" & vbNewLine & aExtProvider.FullName &_
  vbNewLine & vbNewLine & "Password Force Change:" & vbNewLine &_
  aExtProvider.PasswordForceChange
 
Profile.MsgBox(aMessage)  
Note:

In Profile Client v8 on User Interface the Force password change checkbox can be checked in Organisation > External Providers > Basic > Internet.

Version information

Added in v7.9.1