| 2265 |
kivins |
1 |
//---------------------------------------------------------------------------
|
|
|
2 |
|
|
|
3 |
#ifndef ProjectConfigH
|
|
|
4 |
#define ProjectConfigH
|
|
|
5 |
//---------------------------------------------------------------------------
|
|
|
6 |
#include <Classes.hpp>
|
|
|
7 |
#include <Controls.hpp>
|
|
|
8 |
#include <StdCtrls.hpp>
|
|
|
9 |
#include <Forms.hpp>
|
|
|
10 |
#include "Grids_ts.hpp"
|
|
|
11 |
#include "TSDBGrid.hpp"
|
|
|
12 |
#include "TSGrid.hpp"
|
|
|
13 |
#include <Buttons.hpp>
|
|
|
14 |
#include <DBCtrls.hpp>
|
|
|
15 |
#include <ExtCtrls.hpp>
|
|
|
16 |
#include <ADODB.hpp>
|
|
|
17 |
#include <DB.hpp>
|
|
|
18 |
#include "AdvGrid.hpp"
|
|
|
19 |
#include "BaseGrid.hpp"
|
|
|
20 |
#include <Grids.hpp>
|
|
|
21 |
#include "DBAdvGrd.hpp"
|
|
|
22 |
#include "DBAdvNavigator.hpp"
|
|
|
23 |
//---------------------------------------------------------------------------
|
|
|
24 |
class TProjectConfigForm : public TForm
|
|
|
25 |
{
|
|
|
26 |
__published: // IDE-managed Components
|
|
|
27 |
TPanel *Panel1;
|
|
|
28 |
TBitBtn *CloseBtn;
|
|
|
29 |
TADOQuery *ProjectsQuery;
|
|
|
30 |
TDataSource *ProjectsDataSource;
|
|
|
31 |
TDBAdvStringGrid *DBAdvStringGrid1;
|
|
|
32 |
TDBAdvNavigator *DBAdvNavigator1;
|
|
|
33 |
void __fastcall CloseBtnClick(TObject *Sender);
|
|
|
34 |
void __fastcall FormShow(TObject *Sender);
|
|
|
35 |
private: // User declarations
|
|
|
36 |
public: // User declarations
|
|
|
37 |
__fastcall TProjectConfigForm(TComponent* Owner);
|
|
|
38 |
};
|
|
|
39 |
//---------------------------------------------------------------------------
|
|
|
40 |
extern PACKAGE TProjectConfigForm *ProjectConfigForm;
|
|
|
41 |
//---------------------------------------------------------------------------
|
|
|
42 |
#endif
|