|
|
|
|
|
ValidatePassword (Function) In french: ValideMotDePasse Indicates whether the specified password is valid for the current user. The password can be: - the Windows authentication password
- the password of the WINDEV/WEBDEV User Groupware.
- the password used to lock applications (password specified with LockAppPassword).
IF ValidatePassword("MonMotDePasse") = True THEN
Info("Utilisateur reconnu")
ELSE
Info("Mauvais mot de passe")
END
Syntax
<Result> = ValidatePassword(<Password> [, <Authentication>])
<Result>: Boolean - True if the password is correct,
- False otherwise.
<Password>: Character string or Secret string Password to validate for the current user.
New in version 2025Secret strings: If you use the secret string vault, the type of secret string used for this parameter must be "ANSI or Unicode string". To learn more about secret strings and how to use the vault, see Secret string vault. <Authentication>: Optional Integer constant Password authentication method:
| | pwdCustom | Authentication performed according to the password specified in LockAppPassword. | pwdGpw | Authentication performed by the WINDEV/WEBDEV User Groupware. | pwdWindows | Authentication performed according to the Windows password.
|
If <Authentication> is not specified:- If LockAppPassword was used, this password is checked.
- If the User Groupware is enabled, the password is checked in relation to the User Groupware.
- Otherwise, the password is checked against the Windows account.
Related Examples:
|
Unit examples (WINDEV): The Lock functions
[ + ] Using the LockXX functions in order to lock a sensitive application.
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|