12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //---------------------------------------------------------------------------
- #ifndef FrmSetTimeFH
- #define FrmSetTimeFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <ExtCtrls.hpp>
- #include <Graphics.hpp>
- //---------------------------------------------------------------------------
- class TFrmSetTime : public TForm
- {
- __published: // IDE-managed Components
- TButton *btnClose;
- TButton *btnCarInit;
- TPanel *pnlLeft;
- TPanel *plServerInfo;
- TImage *Image3;
- TLabel *Label1;
- TEdit *Edit1;
- TEdit *Edit2;
- TEdit *Edit3;
- TEdit *Edit4;
- TEdit *Edit5;
- TEdit *Edit6;
- TLabel *Label2;
- TLabel *Label3;
- TLabel *Label4;
- TLabel *Label5;
- TLabel *Label6;
- void __fastcall btnCloseClick(TObject *Sender);
- void __fastcall btnCarInitClick(TObject *Sender);
- private: // User declarations
- public: // User declarations
- bool FUpdate;
- __fastcall TFrmSetTime(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TFrmSetTime *FrmSetTime;
- //---------------------------------------------------------------------------
- #endif
|