git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@31 05c56307-c608-d34a-929d-697000501d7a
28 lines
935 B
C++
28 lines
935 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#include <vcl.h>
|
|
#pragma hdrstop
|
|
|
|
#include "ViewBandedDemoData.h"
|
|
//---------------------------------------------------------------------------
|
|
#pragma package(smart_init)
|
|
#pragma link "cxClasses"
|
|
#pragma link "cxGridBandedTableView"
|
|
#pragma link "cxStyles"
|
|
#pragma resource "*.dfm"
|
|
TViewBandedDemoDataDM *ViewBandedDemoDataDM;
|
|
//---------------------------------------------------------------------------
|
|
__fastcall TViewBandedDemoDataDM::TViewBandedDemoDataDM(TComponent* Owner)
|
|
: TDataModule(Owner)
|
|
{
|
|
}
|
|
//---------------------------------------------------------------------------
|
|
|
|
void __fastcall TViewBandedDemoDataDM::tblUSERSCalcFields(
|
|
TDataSet *DataSet)
|
|
{
|
|
tblUSERSName->Value = tblUSERSFNAME->Value + " " + tblUSERSLNAME->Value;
|
|
}
|
|
//---------------------------------------------------------------------------
|
|
|