1234567891011121314151617181920212223242526272829303132333435 |
- //---------------------------------------------------------------------------
- #ifndef FrmPswdChangeFH
- #define FrmPswdChangeFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- //---------------------------------------------------------------------------
- class TFrmPswdChange : public TForm
- {
- __published: // IDE-managed Components
- TLabel *Label2;
- TEdit *EdPswd;
- TLabel *Label1;
- TEdit *EdNewPswd;
- TLabel *Label3;
- TEdit *EdCnfmPswd;
- TButton *BtnSave;
- TButton *BtnClose;
- void __fastcall BtnCloseClick(TObject *Sender);
- void __fastcall BtnSaveClick(TObject *Sender);
- private: // User declarations
- public: // User declarations
- bool FChanged;
- String Password;
- String NewPassword;
- __fastcall TFrmPswdChange(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TFrmPswdChange *FrmPswdChange;
- //---------------------------------------------------------------------------
- #endif
|