28 lines
386 B
Plaintext
28 lines
386 B
Plaintext
unit Chgpass2;
|
|
|
|
interface
|
|
|
|
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
|
|
Buttons;
|
|
|
|
type
|
|
TPasswordDlg = class(TForm)
|
|
Label1: TLabel;
|
|
Password: TEdit;
|
|
OKBtn: TBitBtn;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
PasswordDlg: TPasswordDlg;
|
|
|
|
implementation
|
|
|
|
{$R *.DFM}
|
|
|
|
end.
|
|
|