| 2265 |
kivins |
1 |
//---------------------------------------------------------------------------
|
|
|
2 |
|
|
|
3 |
#include <vcl.h>
|
|
|
4 |
#pragma hdrstop
|
|
|
5 |
|
|
|
6 |
#include "NewProject.h"
|
|
|
7 |
#include "DataModule.h"
|
|
|
8 |
//---------------------------------------------------------------------------
|
|
|
9 |
#pragma package(smart_init)
|
|
|
10 |
#pragma link "Grids_ts"
|
|
|
11 |
#pragma link "TSDBGrid"
|
|
|
12 |
#pragma link "TSGrid"
|
|
|
13 |
#pragma resource "*.dfm"
|
|
|
14 |
TProjectConfigForm *ProjectConfigForm;
|
|
|
15 |
//---------------------------------------------------------------------------
|
|
|
16 |
__fastcall TProjectConfigForm::TProjectConfigForm(TComponent* Owner)
|
|
|
17 |
: TForm(Owner)
|
|
|
18 |
{
|
|
|
19 |
}
|
|
|
20 |
//---------------------------------------------------------------------------
|
|
|
21 |
|
|
|
22 |
void __fastcall TProjectConfigForm::CloseBtnClick(TObject *Sender)
|
|
|
23 |
{
|
|
|
24 |
Close();
|
|
|
25 |
}
|
|
|
26 |
//---------------------------------------------------------------------------
|