home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161a.iso / handson / files / cppwkshp / HelloDemo / HelloUnit.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-12-04  |  1.2 KB  |  41 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef HelloUnitH
  3. #define HelloUnitH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ComCtrls.hpp>
  10. #include <ExtCtrls.hpp>
  11. //---------------------------------------------------------------------------
  12. class TForm1 : public TForm
  13. {
  14. __published:    // IDE-managed Components
  15.     TPageControl *PageControl1;
  16.     TTabSheet *TabSheet1;
  17.     TTabSheet *TabSheet2;
  18.     TImage *Image1;
  19.     TLabel *Label1;
  20.     TLabel *Label2;
  21.     TLabel *Label3;
  22.     TLabel *Label4;
  23.     TLabel *Label5;
  24.     TLabel *Label6;
  25.     TLabel *Label7;
  26.     TLabel *Label8;
  27.     TBevel *Bevel1;
  28.     TLabel *Label9;
  29.     TLabel *Label10;
  30.     TButton *Button1;
  31.     void __fastcall Label10Click(TObject *Sender);
  32.     void __fastcall Button1Click(TObject *Sender);
  33. private:    // User declarations
  34. public:        // User declarations
  35.     __fastcall TForm1(TComponent* Owner);
  36. };
  37. //---------------------------------------------------------------------------
  38. extern PACKAGE TForm1 *Form1;
  39. //---------------------------------------------------------------------------
  40. #endif
  41.