Componentes.Terceros.DevExp.../official/x.19/ExpressQuantumGrid 5/Demos/CBuilder/EditorsStylesDemo/EditorsStylesDemoData.cpp
2007-09-09 11:27:22 +00:00

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;
}
//---------------------------------------------------------------------------