//--------------------------------------------------------------------------- #ifndef Unit1H #define Unit1H //--------------------------------------------------------------------------- #include #include #include #include //--------------------------------------------------------------------------- class TForm1 : public TForm { __published: // IDE-managed Components TGroupBox *GroupBox1; TLabel *Label1; TLabel *Label2; TLabel *Label3; TComboBox *cmbSlot; TEdit *etDITotalChs; TEdit *etDOTotalChs; TGroupBox *GroupBox2; TLabel *Label4; TEdit *etDOValue; TButton *btnWriteDO; TButton *btnClearDO; TButton *btnReadDI; TEdit *etDIValue; void __fastcall btnWriteDOClick(TObject *Sender); void __fastcall btnClearDOClick(TObject *Sender); void __fastcall btnReadDIClick(TObject *Sender); private: // User declarations public: // User declarations __fastcall TForm1(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TForm1 *Form1; //--------------------------------------------------------------------------- #endif