home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / FINDCUST.H < prev    next >
C/C++ Source or Header  |  1997-02-28  |  1KB  |  39 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef FindCustH
  7. #define FindCustH
  8. //---------------------------------------------------------------------------
  9. #include <Forms.hpp>
  10. #include <ExtCtrls.hpp>
  11. #include <Controls.hpp>
  12. #include <Classes.hpp>
  13. #include <StdCtrls.hpp>
  14. #include <DBGrids.hpp>
  15. #include <Grids.hpp>
  16. //---------------------------------------------------------------------------
  17. class TfmFindCust : public TForm
  18. {
  19. __published:
  20.     TDBGrid* DBGrid1;
  21.     TComboBox* ComboBox1;
  22.     TEdit* Edit1;
  23.     TLabel* Label1;
  24.     TLabel* Label2;
  25.     TBevel* Bevel1;
  26.     TCheckBox* cbUseFilter;
  27.     TButton* Button1;
  28.     TButton* Button2;
  29.     void __fastcall ComboBox1Change(TObject *Sender);
  30.     void __fastcall Edit1Change(TObject *Sender);
  31. private:        // private user declarations
  32. public:         // public user declarations
  33.     virtual __fastcall TfmFindCust(TComponent* Owner);
  34. };
  35. //---------------------------------------------------------------------------
  36. extern TfmFindCust *fmFindCust;
  37. //---------------------------------------------------------------------------
  38. #endif
  39.