home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 May / Chip_2002-05_cd1.bin / chplus / cpp / 3 / stl.exe / std1.h < prev    next >
C/C++ Source or Header  |  1998-02-09  |  1KB  |  30 lines

  1. //---------------------------------------------------------------------------
  2. // Borland C++Builder
  3. // Copyright (c) 1987, 1998 Borland International Inc.  All Rights Reserved.
  4. //---------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef std1H
  7. #define std1H
  8. //---------------------------------------------------------------------------
  9. #include <Classes.hpp>
  10. #include <Controls.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Forms.hpp>
  13. //---------------------------------------------------------------------------
  14. class TForm1 : public TForm
  15. {
  16. __published:    // IDE-managed Components
  17.     TMemo *Memo1;
  18.     TComboBox *ComboBox1;
  19.     TLabel *Label1;
  20.     TLabel *Label2;
  21.     void __fastcall ComboBox1Change(TObject *Sender);
  22. private:    // User declarations
  23. public:        // User declarations
  24.     __fastcall TForm1(TComponent* Owner);
  25. };
  26. //---------------------------------------------------------------------------
  27. extern TForm1 *Form1;
  28. //---------------------------------------------------------------------------
  29. #endif
  30.