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

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef CustOrdsH
  7. #define CustOrdsH
  8. //---------------------------------------------------------------------------
  9. #include <Classes.hpp>
  10. #include <Controls.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Forms.hpp>
  13. #include <DBCtrls.hpp>
  14. #include <Mask.hpp>
  15. #include <DBGrids.hpp>
  16. #include <Grids.hpp>
  17. //---------------------------------------------------------------------------
  18. class TfmCustOrd : public TForm
  19. {
  20. __published:    // IDE-managed Components 
  21.     TDBEdit *DBEdit1;
  22.     TDBGrid *DBGrid1;
  23.     void __fastcall FormActivate(TObject *Sender);
  24.     void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  25.     void __fastcall DBGrid1Enter(TObject *Sender);
  26.     
  27. private:        // User declarations
  28. public:         // User declarations
  29.     virtual __fastcall TfmCustOrd(TComponent* Owner);
  30. };
  31. //---------------------------------------------------------------------------
  32. extern TfmCustOrd *fmCustOrd;
  33. //---------------------------------------------------------------------------
  34. #endif
  35.