ISPatient.IsValidIHNPassword

Description

This function checks if the patient's specified IHN password is valid.

Syntax

object.IsValidIHNPassword(aPassword)

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

Return Value

bool

Returns "True" if the patient's specified IHN password is valid.

Example

Display IsValidIHNPassword for the patient.

Dim aPatient  
Dim aIsValidIHNPassword

Set aPatient = Profile.SelectPatient
aIsValidIHNPassword = aPatient.IsValidIHNPassword("1234")
Profile.MsgBox (aIsValidIHNPassword)  
Note:

In Profile Client v8 on User Interface IHN Password can be found in Patient > Alter Patient > Internet > Current IHN Password.

Version information

Added in v7.8.0