git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@29 05c56307-c608-d34a-929d-697000501d7a
40 lines
1.3 KiB
C++
40 lines
1.3 KiB
C++
//---------------------------------------------------------------------------
|
|
#ifndef TreeEditmainH
|
|
#define TreeEditmainH
|
|
//---------------------------------------------------------------------------
|
|
#include <vcl\Classes.hpp>
|
|
#include <vcl\Controls.hpp>
|
|
#include <vcl\StdCtrls.hpp>
|
|
#include <vcl\Forms.hpp>
|
|
#include <vcl\ExtCtrls.hpp>
|
|
#include <vcl\DBCtrls.hpp>
|
|
#include <vcl\Buttons.hpp>
|
|
#include <vcl\DBGrids.hpp>
|
|
#include "Grids.hpp"
|
|
#include <vcl\DBTables.hpp>
|
|
#include <vcl\DB.hpp>
|
|
#include "dxdbtrel.hpp"
|
|
#include <Db.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TForm1 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TPanel *Panel1;
|
|
TLabel *Label1;
|
|
TdxDBTreeViewEdit *DBTreeViewEdit1;
|
|
TDBNavigator *DBNavigator1;
|
|
TBitBtn *BitBtn1;
|
|
TPanel *Panel2;
|
|
TDBGrid *DBGrid1;
|
|
TTable *Table1;
|
|
TDataSource *DataSource1;
|
|
void __fastcall DBTreeViewEdit1CloseUp(TObject *Sender, bool Accept);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TForm1(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern TForm1 *Form1;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|