1234567891011121314151617181920212223242526272829 |
- //---------------------------------------------------------------------------
- #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 *Edit1;
- TLabel *Label3;
- TEdit *Edit2;
- TButton *BtnSave;
- TButton *BtnClose;
- private: // User declarations
- public: // User declarations
- __fastcall TFrmPswdChange(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TFrmPswdChange *FrmPswdChange;
- //---------------------------------------------------------------------------
- #endif
|