15 lines
510 B
C++
15 lines
510 B
C++
|
|
//---------------------------------------------------------------------------
|
||
|
|
#include <vcl\vcl.h>
|
||
|
|
#pragma hdrstop
|
||
|
|
|
||
|
|
#include "dbgridv.h"
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
#pragma link "Grids"
|
||
|
|
#pragma resource "*.dfm"
|
||
|
|
TForm3 *Form3;
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
__fastcall TForm3::TForm3(TComponent* Owner)
|
||
|
|
: TForm(Owner)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
//---------------------------------------------------------------------------
|