ISProvider.PasswordChangedOn

Description

This function returns the date and time the password was changed.

Syntax

object.PasswordChangedOn( [Num = 1])

Part Attribute Type Description
object Required
The object always implements the ISProvider interface
Num In, Optional
Default value is 1
int
The index of the previous password (1 is the current password)

Return Value

DateTime

Returns the date and time the password was changed.

Example

Display the date and time the password was changed.

Dim aProvider
Dim aNum
Dim aMessage

aNum = 1 

Set aProvider = Profile.LoadProvider("VE3")
aMessage = aMessage & vbNewLine & "Provider: " & aProvider.FullName & vbNewLine &_
  "The date and time the password was changed is " &_
  aProvider.PasswordChangedOn (aNum)
    
Profile.MsgBox (aMessage) 
Note:

In Profile Client v8 on User Interface Password Changed On cannot be found.

Version information

Added in v7.8.0