home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- //Borland C++Builder
- //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
- //----------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #ifndef CustModH
- #define CustModH
- //---------------------------------------------------------------------------
- #include <windows.hpp>
- #include <messages.hpp>
- #include <sysutils.hpp>
- #include <classes.hpp>
- #include <graphics.hpp>
- #include <controls.hpp>
- #include <forms.hpp>
- #include <dialogs.hpp>
- #include <extctrls.hpp>
- #include <stdctrls.hpp>
- #include <basemod.h>
- #include <dbgrids.hpp>
- #include <grids.hpp>
- //---------------------------------------------------------------------------
- class TCust : public TBase
- {
- __published:
- TEdit *FilterText;
- TCheckBox *FilterToggle;
- TDBGrid *DBGrid1;
- void __fastcall FilterToggleClick(TObject *Sender);
- void __fastcall FilterTextChange(TObject *Sender);
- private: // private user declarations
- public: // public user declarations
- virtual __fastcall TCust(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern TCust *Cust;
- //---------------------------------------------------------------------------
- #endif
-