Componentes.Terceros.DevExp.../official/x.30/ExpressQuantumGrid 6/Demos/Delphi/ViewCardSimpleDemo/ViewCardSimpleDemoData.pas
2007-12-16 17:06:54 +00:00

32 lines
615 B
ObjectPascal

unit ViewCardSimpleDemoData;
interface
uses
SysUtils, Classes, DB, cxStyles, cxGridCardView, cxClasses,
cxGridTableView, Forms, DBTables;
type
TViewCardSimpleDemoMainDM = class(TDataModule)
DataBase: TDataBase;
tlbDEPARTMENTS: TTable;
dsDEPARTMENTS: TDataSource;
dsUSERS: TDataSource;
tlbUSERS: TTable;
tlbDEPARTMENTSID: TAutoIncField;
tlbDEPARTMENTSNAME: TStringField;
private
{ Private declarations }
public
{ Public declarations }
end;
var
ViewCardSimpleDemoMainDM: TViewCardSimpleDemoMainDM;
implementation
{$R *.dfm}
end.