Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2265 kivins 1
//---------------------------------------------------------------------------
2
 
3
#ifndef NewProjectH
4
#define NewProjectH
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
//---------------------------------------------------------------------------
17
class TProjectConfigForm : public TForm
18
{
19
__published:	// IDE-managed Components
20
	TtsDBGrid *tsDBGrid1;
21
	TDBNavigator *DBNavigator1;
22
	TPanel *Panel1;
23
	TBitBtn *CloseBtn;
24
	void __fastcall CloseBtnClick(TObject *Sender);
25
private:	// User declarations
26
public:		// User declarations
27
	__fastcall TProjectConfigForm(TComponent* Owner);
28
};
29
//---------------------------------------------------------------------------
30
extern PACKAGE TProjectConfigForm *ProjectConfigForm;
31
//---------------------------------------------------------------------------
32
#endif