//--------------------------------------------------------------------------- #ifndef Unit1H #define Unit1H //--------------------------------------------------------------------------- #include #include #include #include //--------------------------------------------------------------------------- class TForm1 : public TForm { __published: // IDE-managed Components TRadioButton *RadioButton1; TRadioButton *RadioButton2; TLabel *Label1; TLabel *Label2; TLabel *Label3; TEdit *edIndex; TLabel *Label4; TLabel *Label5; TEdit *edByteNum; TButton *Button1; TButton *Button2; TEdit *edWrite; TEdit *edRead; void __fastcall FormCreate(TObject *Sender); void __fastcall RadioButton1Click(TObject *Sender); void __fastcall Button1Click(TObject *Sender); void __fastcall Button2Click(TObject *Sender); private: // User declarations public: // User declarations __fastcall TForm1(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TForm1 *Form1; //--------------------------------------------------------------------------- #endif