home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 March / Chip_1999-03_cd.bin / zkuste / delphi / D / MATEM.ARJ / NUMIO.ZIP / exmpl-1 / cpp1 / frmnumin.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-08-19  |  1.3 KB  |  46 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef frmnuminH
  3. #define frmnuminH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include "NumLab.hpp"
  10. #include "NumIO.hpp"
  11. #include <vcl\Buttons.hpp>
  12. //---------------------------------------------------------------------------
  13. class TForm1 : public TForm
  14. {
  15. __published:    // IDE-managed Components
  16.     TNumLab *NumLab1;
  17.     TLabel *Label1;
  18.     TLabel *Label5;
  19.     TNumIO *NumIO1;
  20.     TBitBtn *BButExit;
  21.     TGroupBox *GroupBox1;
  22.     TLabel *Label4;
  23.     TLabel *Label2;
  24.     TLabel *Label3;
  25.     TComboBox *CBFormat;
  26.     TNumIO *NumIO2;
  27.     TNumIO *NumIO3;
  28.     
  29.     
  30.     
  31.  
  32.     void __fastcall NumIO1Change(TObject *Sender);
  33.     void __fastcall CBFormatChange(TObject *Sender);
  34.     void __fastcall NumIO2Change(TObject *Sender);
  35.     void __fastcall NumIO3Change(TObject *Sender);
  36.     void __fastcall FormShow(TObject *Sender);
  37.     void __fastcall BButExitClick(TObject *Sender);
  38. private:    // User declarations
  39. public:        // User declarations
  40.     __fastcall TForm1(TComponent* Owner);
  41. };
  42. //---------------------------------------------------------------------------
  43. extern TForm1 *Form1;
  44. //---------------------------------------------------------------------------
  45. #endif
  46.