Componentes.Terceros.RemObj.../official/5.0.30.691/Data Abstract for Delphi/Samples/Exported DataTables/ExportedDataTablesServer.dpr

30 lines
1.2 KiB
ObjectPascal

program ExportedDataTablesServer;
{#ROGEN:ExportedDataTablesLibrary.RODL} // RemObjects SDK: Careful, do not remove!
uses
uROComInit,
uROComboService,
Forms,
ExportedDataTablesServerMain in 'ExportedDataTablesServerMain.pas' {ExportedDataTablesServerMainForm},
ExportedDataTablesServerData in 'ExportedDataTablesServerData.pas' {ExportedDataTablesServerDataModule: TDataModule},
ExportedDataTablesLibrary_Intf in 'ExportedDataTablesLibrary_Intf.pas',
ExportedDataTablesLibrary_Invk in 'ExportedDataTablesLibrary_Invk.pas',
ExportedDataTablesService_Impl in 'ExportedDataTablesService_Impl.pas' {ExportedDataTablesService: TDataAbstractService};
{$R *.res}
{$R RODLFile.res}
begin
if ROStartService('ExportedDataTables', 'ExportedDataTables') then begin
ROService.CreateForm(TExportedDataTablesServerDataModule, ExportedDataTablesServerDataModule);
ROService.Run;
Exit;
end;
Application.Initialize;
Application.CreateForm(TExportedDataTablesServerDataModule, ExportedDataTablesServerDataModule);
Application.CreateForm(TExportedDataTablesServerMainForm, ExportedDataTablesServerMainForm);
Application.Run;
end.