home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / handson / files / cppwkshp / UndocForm.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-02-07  |  1015 b   |  29 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef UndocFormH
  3. #define UndocFormH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <Buttons.hpp>
  10. #include <ExtCtrls.hpp>
  11. //---------------------------------------------------------------------------
  12. class TForm1 : public TForm
  13. {
  14. __published:    // IDE-managed Components
  15.     TBitBtn *Picker;
  16.     TImage *Image;
  17.     TLabel *Label1;
  18.     void __fastcall FormCreate(TObject *Sender);
  19.     void __fastcall FormDestroy(TObject *Sender);
  20.     void __fastcall PickerClick(TObject *Sender);
  21. private:    // User declarations
  22. public:        // User declarations
  23.     __fastcall TForm1(TComponent* Owner);
  24. };
  25. //---------------------------------------------------------------------------
  26. extern PACKAGE TForm1 *Form1;
  27. //---------------------------------------------------------------------------
  28. #endif
  29.