home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / MAINFORM.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  2KB  |  40 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef mainformH
  7. #define mainformH
  8. //---------------------------------------------------------------------------
  9. #include <vcl\Classes.hpp>
  10. #include <vcl\Controls.hpp>
  11. #include <vcl\StdCtrls.hpp>
  12. #include <vcl\Forms.hpp>
  13. #include <vcl\Menus.hpp>
  14. #include <vcl\ExtCtrls.hpp>
  15. //---------------------------------------------------------------------------
  16. class TForm1 : public TForm
  17. {
  18. __published:    // IDE-managed Components 
  19.         TMemo *Memo1;
  20.         TLabel *Label1;
  21.         TLabel *Label3;
  22.         TLabel *Label2;
  23.         TLabel *Label4;
  24.         void __fastcall FormResize(TObject *Sender);
  25. private:    // User declarations
  26. public:        // User declarations
  27.         virtual __fastcall TForm1(TComponent* Owner);
  28.         void virtual __fastcall RestrictSize(TMessage& Msg);
  29. // This message map maps the WM_GETMINMAXINFO message to the
  30. // RestrictSize function.
  31. BEGIN_MESSAGE_MAP
  32. MESSAGE_HANDLER(WM_GETMINMAXINFO,TMessage,RestrictSize)
  33. // Add any number of additional message handlers here.
  34. END_MESSAGE_MAP(TForm)
  35. };
  36. //---------------------------------------------------------------------------
  37. extern TForm1 *Form1;
  38. //---------------------------------------------------------------------------
  39. #endif
  40.