Componentes.Terceros.RemObj.../official/5.0.29.665/Data Abstract for Delphi/Samples/Exported DataTables/ExportedDataTablesClient.dpr
2008-03-24 15:49:18 +00:00

18 lines
588 B
ObjectPascal

program ExportedDataTablesClient;
uses
uROComInit,
Forms,
MidasLib,
ExportedDataTablesClientMain in 'ExportedDataTablesClientMain.pas' {ExportedDataTablesClientMainForm},
ExportedDataTablesClientData in 'ExportedDataTablesClientData.pas' {ExportedDataTablesClientDataModule: TDAClientDataModule};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TExportedDataTablesClientDataModule, ExportedDataTablesClientDataModule);
Application.CreateForm(TExportedDataTablesClientMainForm, ExportedDataTablesClientMainForm);
Application.Run;
end.