home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
-
- #include "GridForm.h"
- #include "RecForm.h"
- //---------------------------------------------------------------------------
- #pragma resource "*.dfm"
- TGridViewForm *GridViewForm;
- //---------------------------------------------------------------------------
- __fastcall TGridViewForm::TGridViewForm(TComponent* Owner)
- : TStdDataForm(Owner)
- {
- }
- //---------------------------------------------------------------------------
- void __fastcall TGridViewForm::DBGrid1DblClick(TObject *Sender)
- {
- RecViewForm->Show();
- }
- //---------------------------------------------------------------------