FrmPswdChangeF.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //---------------------------------------------------------------------------
  2. #ifndef FrmPswdChangeFH
  3. #define FrmPswdChangeFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TFrmPswdChange : public TForm
  11. {
  12. __published: // IDE-managed Components
  13. TLabel *Label2;
  14. TEdit *EdPswd;
  15. TLabel *Label1;
  16. TEdit *EdNewPswd;
  17. TLabel *Label3;
  18. TEdit *EdCnfmPswd;
  19. TButton *BtnSave;
  20. TButton *BtnClose;
  21. void __fastcall BtnCloseClick(TObject *Sender);
  22. void __fastcall BtnSaveClick(TObject *Sender);
  23. private: // User declarations
  24. public: // User declarations
  25. bool FChanged;
  26. String Password;
  27. String NewPassword;
  28. __fastcall TFrmPswdChange(TComponent* Owner);
  29. };
  30. //---------------------------------------------------------------------------
  31. extern PACKAGE TFrmPswdChange *FrmPswdChange;
  32. //---------------------------------------------------------------------------
  33. #endif