//--------------------------------------------------------------------------- #ifndef Unit1H #define Unit1H //--------------------------------------------------------------------------- #include #include #include #include #include #include //--------------------------------------------------------------------------- class TSample1Form : public TForm { __published: // IDE-managed Components TLabel *CardName; TMemo *Memo1; TButton *ExitButton; TGroupBox *ISAPanel; TLabel *HexLabel; TEdit *BaseEdit; TButton *TestButton; TGroupBox *ChannelBox; TStatusBar *ErrorStatus; TTimer *TestTimer; TLabel *Label2; TLabel *Label3; TLabel *Label4; TPanel *PortAOut; TPanel *PortAIn; TPanel *PortBIn; void __fastcall ExitButtonClick(TObject *Sender); void __fastcall TestButtonClick(TObject *Sender); void __fastcall TestTimerTimer(TObject *Sender); private: // User declarations public: // User declarations __fastcall TSample1Form(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TSample1Form *Sample1Form; //--------------------------------------------------------------------------- #endif