home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / Runimage / Cbuilder4 / Examples / Apps / MultiPag / MAIN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1999-01-26  |  1.5 KB  |  47 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef mainH
  7. #define mainH
  8. //---------------------------------------------------------------------------
  9. #include <Classes.hpp>
  10. #include <Controls.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Forms.hpp>
  13. #include <ComCtrls.hpp>
  14. #include <ExtCtrls.hpp>
  15. //---------------------------------------------------------------------------
  16. class TForm1 : public TForm
  17. {
  18. __published:    // IDE-managed Components
  19.     TPageControl *PageControl1;
  20.     TTabSheet *One;
  21.     TTabSheet *Two;
  22.     TTabSheet *Three;
  23.     TTabSheet *Four;
  24.     TRadioGroup *RadioGroup1;
  25.     TRadioButton *RadioButton1;
  26.     TRadioButton *RadioButton2;
  27.     TRadioButton *RadioButton3;
  28.     TLabel *Label2;
  29.     TLabel *Label3;
  30.     TLabel *Label4;
  31.     TStatusBar *StatusBar1;
  32.     TCheckBox *CheckBox1;
  33.     TCheckBox *CheckBox2;
  34.     TCheckBox *CheckBox3;
  35.     TLabel *Label1;
  36.     TMemo *Memo1;
  37.     void __fastcall PageControl1Change(TObject *Sender);
  38.     
  39. private:    // User declarations
  40. public:        // User declarations
  41.     virtual __fastcall TForm1(TComponent* Owner);
  42. };
  43. //---------------------------------------------------------------------------
  44. extern TForm1 *Form1;
  45. //---------------------------------------------------------------------------
  46. #endif
  47.