Files
mars-nweadmin/SRC/UNITS/CHGPASS2.PAS
2026-05-12 20:38:28 +02:00

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.