30 lines
1.0 KiB
C
30 lines
1.0 KiB
C
|
|
//---------------------------------------------------------------------------
|
||
|
|
|
||
|
|
#ifndef ConvertDBGridDemoDataH
|
||
|
|
#define ConvertDBGridDemoDataH
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
#include <Classes.hpp>
|
||
|
|
#include <Controls.hpp>
|
||
|
|
#include <StdCtrls.hpp>
|
||
|
|
#include <Forms.hpp>
|
||
|
|
#include "cxClasses.hpp"
|
||
|
|
#include "cxGridTableView.hpp"
|
||
|
|
#include "cxStyles.hpp"
|
||
|
|
#include <DB.hpp>
|
||
|
|
#include <DBTables.hpp>
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
class TConvertDBGridDemoDataDM : public TDataModule
|
||
|
|
{
|
||
|
|
__published: // IDE-managed Components
|
||
|
|
TDatabase *DataBase;
|
||
|
|
TTable *tblPERSONS;
|
||
|
|
TDataSource *dsPERSONS;
|
||
|
|
private: // User declarations
|
||
|
|
public: // User declarations
|
||
|
|
__fastcall TConvertDBGridDemoDataDM(TComponent* Owner);
|
||
|
|
};
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
extern PACKAGE TConvertDBGridDemoDataDM *ConvertDBGridDemoDataDM;
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
#endif
|