git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@7 05c56307-c608-d34a-929d-697000501d7a
22 lines
862 B
C++
22 lines
862 B
C++
//---------------------------------------------------------------------------
|
|
#include <vcl.h>
|
|
#pragma hdrstop
|
|
|
|
#include "EditorsStylesDemoData.h"
|
|
//---------------------------------------------------------------------------
|
|
#pragma package(smart_init)
|
|
#pragma resource "*.dfm"
|
|
TEditorsStylesDemoDataDM *EditorsStylesDemoDataDM;
|
|
//---------------------------------------------------------------------------
|
|
__fastcall TEditorsStylesDemoDataDM::TEditorsStylesDemoDataDM(TComponent* Owner)
|
|
: TDataModule(Owner)
|
|
{
|
|
}
|
|
//---------------------------------------------------------------------------
|
|
void __fastcall TEditorsStylesDemoDataDM::tblUsersCalcFields(TDataSet *DataSet)
|
|
{
|
|
tblUsersUserName->Value = tblUsersFNAME->Value + ' ' + tblUsersLNAME->Value;
|
|
}
|
|
//---------------------------------------------------------------------------
|
|
|