Class FinChangePasswordForm
public class FinChangePasswordForm : Form, IDropTarget, ISynchronizeInvoke, IWin32Window, IBindableComponent, IComponent, IDisposable, IContainerControl
- Inheritance
-
FinChangePasswordForm
- Implements
- Inherited Members
Constructors
FinChangePasswordForm(string, bool)
public FinChangePasswordForm(string sCaption, bool fContactDetails)
Parameters
sCaptionstringText for the Window caption.
fContactDetailsboolIf
true, then the dialog box will includes fields that present the contact details given to ShowDialog(FinContact).
Properties
Heading
The heading of the dialog box.
public string Heading { get; set; }
Property Value
NewPassword
public string NewPassword { get; set; }
Property Value
NewPasswordLabel
public string NewPasswordLabel { get; set; }
Property Value
OldPassword
public string OldPassword { get; set; }
Property Value
OldPasswordLabel
public string OldPasswordLabel { get; set; }
Property Value
PasswordMaxLength
The maximum length of the password that must be entered by the user.
public int PasswordMaxLength { get; set; }
Property Value
Exceptions
- ArgumentOutOfRangeException
An attempt was made to set a negative value or a value greater than 256.
PasswordMinLength
The minumum length of the password that must be entered by the user.
public int PasswordMinLength { get; set; }
Property Value
- int
The default value for this property is zero.
Exceptions
- ArgumentOutOfRangeException
An attempt was made to set a negative value or a value greater than 256.
PasswordNumeric
public bool PasswordNumeric { get; set; }
Property Value
Prompt
public string Prompt { get; set; }
Property Value
Methods
ShowDialog(FinContact)
public DialogResult ShowDialog(FinContact aContact)
Parameters
aContactFinContactOptional reference to FinContact object for which the passphrase shall be changed. This reference is used to present more detailed information to the user. If this is
null, then no contact details are shown in the dialog box.