//--------------------------------------------------------------------------- #ifndef Unit1H #define Unit1H //--------------------------------------------------------------------------- #include #include #include #include #include //--------------------------------------------------------------------------- class TForm1 : public TForm { __published: // IDE-managed Components TLabel *Label1; TLabel *Label2; TPanel *OutPanel; TPanel *InPanel; TButton *StartBtn; TButton *ExitBtn; TTimer *Timer1; TMemo *Memo1; TLabel *Label3; TEdit *AddrEdit; TLabel *Label4; void __fastcall StartBtnClick(TObject *Sender); void __fastcall Timer1Timer(TObject *Sender); void __fastcall ExitBtnClick(TObject *Sender); private: // User declarations public: // User declarations __fastcall TForm1(TComponent* Owner); unsigned long Addr; unsigned char outChar; }; //--------------------------------------------------------------------------- extern PACKAGE TForm1 *Form1; //--------------------------------------------------------------------------- #endif