FrmSetTimeF.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //---------------------------------------------------------------------------
  2. #ifndef FrmSetTimeFH
  3. #define FrmSetTimeFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <Graphics.hpp>
  11. //---------------------------------------------------------------------------
  12. class TFrmSetTime : public TForm
  13. {
  14. __published: // IDE-managed Components
  15. TButton *btnClose;
  16. TButton *btnCarInit;
  17. TPanel *pnlLeft;
  18. TPanel *plServerInfo;
  19. TImage *Image3;
  20. TLabel *Label1;
  21. TEdit *Edit1;
  22. TEdit *Edit2;
  23. TEdit *Edit3;
  24. TEdit *Edit4;
  25. TEdit *Edit5;
  26. TEdit *Edit6;
  27. TLabel *Label2;
  28. TLabel *Label3;
  29. TLabel *Label4;
  30. TLabel *Label5;
  31. TLabel *Label6;
  32. void __fastcall btnCloseClick(TObject *Sender);
  33. void __fastcall btnCarInitClick(TObject *Sender);
  34. private: // User declarations
  35. public: // User declarations
  36. bool FUpdate;
  37. __fastcall TFrmSetTime(TComponent* Owner);
  38. };
  39. //---------------------------------------------------------------------------
  40. extern PACKAGE TFrmSetTime *FrmSetTime;
  41. //---------------------------------------------------------------------------
  42. #endif