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

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef GridFormH
  7. #define GridFormH
  8. //---------------------------------------------------------------------------
  9. #include <Forms.hpp>
  10. #include <ExtCtrls.hpp>
  11. #include <Controls.hpp>
  12. #include <Classes.hpp>
  13. #include <StdCtrls.hpp>
  14. #include <DBTables.hpp>
  15. #include <DB.hpp>
  16. #include <DBGrids.hpp>
  17. #include <Grids.hpp>
  18. #include "GdsData.h"
  19. //---------------------------------------------------------------------------
  20. class TGridViewForm : public TStdDataForm
  21. {
  22. __published:
  23.     TDBGrid *DBGrid1;
  24.     void __fastcall DBGrid1DblClick(TObject *Sender);
  25. private:        // private user declarations
  26. public:         // public user declarations
  27.     virtual __fastcall TGridViewForm(TComponent* Owner);
  28. };
  29. //---------------------------------------------------------------------------
  30. extern TGridViewForm *GridViewForm;
  31. //---------------------------------------------------------------------------
  32. #endif
  33.