home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / MAINFORM.H < prev    next >
C/C++ Source or Header  |  1997-02-28  |  949b  |  27 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef mainformH
  3. #define mainformH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\Dialogs.hpp>
  10. #include <vcl\ExtCtrls.hpp>
  11. //---------------------------------------------------------------------------
  12. class TForm1 : public TForm
  13. {
  14. __published:    // IDE-managed Components 
  15.     TColorDialog *ColorDialog;
  16.     TButton *Button;
  17.     TPanel *Panel1;
  18.     void __fastcall ButtonClick(TObject *Sender);
  19. private:    // User declarations
  20. public:        // User declarations
  21.     virtual __fastcall TForm1(TComponent* Owner);
  22. };
  23. //---------------------------------------------------------------------------
  24. extern TForm1 *Form1;
  25. //---------------------------------------------------------------------------
  26. #endif
  27.