home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / Runimage / Cbuilder4 / Examples / Apps / Tab / MAIN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1999-01-26  |  1.1 KB  |  30 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. //---------------------------------------------------------------------------
  15. class TForm1 : public TForm
  16. {
  17. __published:    // IDE-managed Components
  18.     TTabControl *TabControl1;
  19.     TStatusBar *StatusBar1;
  20.     TLabel *Label1;
  21.     void __fastcall TabControl1Change(TObject *Sender);
  22. private:    // User declarations
  23. public:        // User declarations
  24.     virtual __fastcall TForm1(TComponent* Owner);
  25. };
  26. //---------------------------------------------------------------------------
  27. extern TForm1 *Form1;
  28. //---------------------------------------------------------------------------
  29. #endif
  30.