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

  1. //---------------------------------------------------------------------------
  2. #ifndef TomDickHarryH
  3. #define TomDickHarryH
  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. #include <Tabs.hpp>
  12. //---------------------------------------------------------------------------
  13. class TForm1 : public TForm
  14. {
  15. __published:    // IDE-managed Components
  16.     TNotebook *Notebook1;
  17.     TTabSet *TabSet1;
  18.     TLabel *Label1;
  19.     TButton *Button1;
  20.     TCheckBox *CheckBox1;
  21.     TRadioButton *RadioButton1;
  22.     TLabel *Label2;
  23.     TGroupBox *GroupBox1;
  24.     TScrollBar *ScrollBar1;
  25.     TBevel *Bevel1;
  26.     TBevel *Bevel2;
  27.     TBevel *Bevel3;
  28.     TLabel *Label3;
  29.     void __fastcall FormCreate(TObject *Sender);
  30.     void __fastcall TabSet1Change(TObject *Sender, int NewTab,
  31.           bool &AllowChange);
  32. private:    // User declarations
  33. public:        // User declarations
  34.     __fastcall TForm1(TComponent* Owner);
  35. };
  36. //---------------------------------------------------------------------------
  37. extern PACKAGE TForm1 *Form1;
  38. //---------------------------------------------------------------------------
  39. #endif
  40.