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