//--------------------------------------------------------------------------- #ifndef Sample3uH #define Sample3uH //--------------------------------------------------------------------------- #include #include #include #include #include //--------------------------------------------------------------------------- class TForm1 : public TForm { __published: // IDE-managed Components TLabel *Label1; TLabel *Label2; TLabel *Label3; TLabel *BaseLabel; TLabel *Label4; TLabel *Label5; TLabel *Label6; TLabel *UpdateLabel; TLabel *LoopLabel; TBevel *Bevel2; TLabel *StatusLabel; TButton *TestButton; TButton *ExitButton; TTimer *Timer1;void __fastcall Timer1Timer(TObject *Sender); void __fastcall TestButtonClick(TObject *Sender); void __fastcall FormClose(TObject *Sender, TCloseAction &Action); void __fastcall FormCreate(TObject *Sender); void __fastcall ExitButtonClick(TObject *Sender); private: // User declarations public: // User declarations __fastcall TForm1(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TForm1 *Form1; //--------------------------------------------------------------------------- #endif