123456789101112131415161718192021222324252627282930313233343536373839 |
- //---------------------------------------------------------------------------
- #ifndef FrmSetBrghFH
- #define FrmSetBrghFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <ExtCtrls.hpp>
- #include <Graphics.hpp>
- //---------------------------------------------------------------------------
- class TFrmSetBrgh : public TForm
- {
- __published: // IDE-managed Components
- TButton *btnClose;
- TButton *btnCarInit;
- TPanel *pnlLeft;
- TPanel *plServerInfo;
- TImage *Image3;
- TLabel *Label1;
- TEdit *EdMode;
- TEdit *EdCurrStep;
- TEdit *EdWeekStep;
- TEdit *EdMghtStep;
- TLabel *Label2;
- TLabel *Label3;
- TLabel *Label4;
- void __fastcall btnCloseClick(TObject *Sender);
- void __fastcall btnCarInitClick(TObject *Sender);
- private: // User declarations
- public: // User declarations
- bool FUpdate;
- __fastcall TFrmSetBrgh(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TFrmSetBrgh *FrmSetBrgh;
- //---------------------------------------------------------------------------
- #endif
|