//--------------------------------------------------------------------------- #ifndef LogInWindowH #define LogInWindowH //--------------------------------------------------------------------------- #include #include #include #include #include #include //--------------------------------------------------------------------------- class TForm_LogIn : public TForm { __published: // IDE-managed Components TEdit *Edit_ID; TEdit *Edit_Password; TCheckBox *CheckBox_RememberPW; TButton *Button_LogIn; TImage *Image1; void __fastcall FormClose(TObject *Sender, TCloseAction &Action); void __fastcall Edit_PasswordKeyPress(TObject *Sender, char &Key); void __fastcall Edit_IDKeyPress(TObject *Sender, char &Key); private: // User declarations public: // User declarations __fastcall TForm_LogIn(TComponent* Owner); private: // User declarations public: // User declarations private: // Control Variable public: // Control Member Variable private: // Control Function void ComponentInit(); void RequestLogIn(); public: // Control Member Function public: // Event Type Member Function }; //--------------------------------------------------------------------------- extern PACKAGE TForm_LogIn *Form_LogIn; //--------------------------------------------------------------------------- #endif