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

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef CustModH
  7. #define CustModH
  8. //---------------------------------------------------------------------------
  9. #include <windows.hpp>
  10. #include <messages.hpp>
  11. #include <sysutils.hpp>
  12. #include <classes.hpp>
  13. #include <graphics.hpp>
  14. #include <controls.hpp>
  15. #include <forms.hpp>
  16. #include <dialogs.hpp>
  17. #include <extctrls.hpp>
  18. #include <stdctrls.hpp>
  19. #include <basemod.h>
  20. #include <dbgrids.hpp>
  21. #include <grids.hpp>
  22. //---------------------------------------------------------------------------
  23. class TCust : public TBase
  24. {
  25. __published:
  26.     TEdit *FilterText;
  27.     TCheckBox *FilterToggle;
  28.     TDBGrid *DBGrid1;
  29.     void __fastcall FilterToggleClick(TObject *Sender);
  30.     void __fastcall FilterTextChange(TObject *Sender);
  31. private:        // private user declarations
  32. public:         // public user declarations
  33.     virtual __fastcall TCust(TComponent* Owner);
  34. };
  35. //---------------------------------------------------------------------------
  36. extern TCust *Cust;
  37. //---------------------------------------------------------------------------
  38. #endif
  39.