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

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4.  
  5. #include "GridForm.h"
  6. #include "RecForm.h"
  7. //---------------------------------------------------------------------------
  8. #pragma resource "*.dfm"
  9. TGridViewForm *GridViewForm;
  10. //---------------------------------------------------------------------------
  11. __fastcall TGridViewForm::TGridViewForm(TComponent* Owner)
  12.   : TStdDataForm(Owner)
  13. {
  14. }
  15. //---------------------------------------------------------------------------
  16. void __fastcall TGridViewForm::DBGrid1DblClick(TObject *Sender)
  17. {
  18.   RecViewForm->Show();
  19. }
  20. //---------------------------------------------------------------------