Componentes.Terceros.DevExp.../official/x.26/ExpressQuantumGrid 6/Demos/Delphi/ViewCardSimpleDemo/ViewCardSimpleDemoData.pas
2007-09-09 11:27:27 +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.