Componentes.Terceros.RemObj.../official/5.0.23.613/Data Abstract for Delphi/Samples/MegaDemo/MegaDemoClient.dpr

18 lines
488 B
ObjectPascal

program MegaDemoClient;
uses
uROComInit,
Forms,
MidasLib,
MegaDemoClient_Main in 'MegaDemoClient_Main.pas' {MegaDemoClient_MainForm},
MegaDemoClient_Data in 'MegaDemoClient_Data.pas' {MegaDemoClient_DataModule: TDAClientDataModule};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TMegaDemoClient_DataModule, MegaDemoClient_DataModule);
Application.CreateForm(TMegaDemoClient_MainForm, MegaDemoClient_MainForm);
Application.Run;
end.