home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / GRIDFORM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-16  |  1002 b   |  29 lines

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