FrmPswdChangeF.h.~3~ 1.0 KB

123456789101112131415161718192021222324252627282930313233
  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 *Edit1;
  17. TLabel *Label3;
  18. TEdit *Edit2;
  19. TButton *BtnSave;
  20. TButton *BtnClose;
  21. void __fastcall BtnCloseClick(TObject *Sender);
  22. private: // User declarations
  23. public: // User declarations
  24. String Password;
  25. String NewPassword;
  26. __fastcall TFrmPswdChange(TComponent* Owner);
  27. };
  28. //---------------------------------------------------------------------------
  29. extern PACKAGE TFrmPswdChange *FrmPswdChange;
  30. //---------------------------------------------------------------------------
  31. #endif