//--------------------------------------------------------------------------- #ifndef DACuH #define DACuH //--------------------------------------------------------------------------- #include #include #include #include #include #include //--------------------------------------------------------------------------- class TMainForm : public TForm { __published: // IDE-managed Components TStatusBar *StatusBar1; TGroupBox *GroupOutput; TLabel *Label1; TLabel *LOutput; TTrackBar *Value; TRadioGroup *GroupRange; TRadioGroup *GroupChannel; TButton *ExitButton; TButton *Initialize; TGroupBox *ISAPanel; TLabel *Label2; TEdit *ISAEdit; TMemo *Memo1;void __fastcall ValueChange(TObject *Sender); void __fastcall FormCreate(TObject *Sender); void __fastcall ExitButtonClick(TObject *Sender); void __fastcall InitializeClick(TObject *Sender); void __fastcall GroupRangeClick(TObject *Sender); private: // User declarations public: // User declarations __fastcall TMainForm(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TMainForm *MainForm; //--------------------------------------------------------------------------- #endif