home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- //Borland C++ Builder
- //Copyright (c) 1987 Borland International Inc. All Rights Reserved.
- //----------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #ifndef mainformH
- #define mainformH
- //---------------------------------------------------------------------------
- #include <vcl\Classes.hpp>
- #include <vcl\Controls.hpp>
- #include <vcl\StdCtrls.hpp>
- #include <vcl\Forms.hpp>
- #include <vcl\Menus.hpp>
- #include <vcl\ExtCtrls.hpp>
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TMemo *Memo1;
- TLabel *Label1;
- TLabel *Label3;
- TLabel *Label2;
- TLabel *Label4;
- void __fastcall FormResize(TObject *Sender);
- private: // User declarations
- public: // User declarations
- virtual __fastcall TForm1(TComponent* Owner);
- void virtual __fastcall RestrictSize(TMessage& Msg);
- // This message map maps the WM_GETMINMAXINFO message to the
- // RestrictSize function.
- BEGIN_MESSAGE_MAP
- MESSAGE_HANDLER(WM_GETMINMAXINFO,TMessage,RestrictSize)
- // Add any number of additional message handlers here.
- END_MESSAGE_MAP(TForm)
- };
- //---------------------------------------------------------------------------
- extern TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
-