Componentes.Terceros.SDAC/internal/4.10.0.10/1/Demos/Win32/Miscellaneous/Midas/Server.dpr
2007-10-05 14:48:18 +00:00

18 lines
321 B
ObjectPascal

program Server;
uses
Forms,
ServerForm in 'ServerForm.pas' {fmServer},
Server_TLB in 'Server_TLB.pas',
Data in 'Data.pas' {Datas: TRemoteDataModule} {Datas: CoClass};
{$R *.TLB}
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TfmServer, fmServer);
Application.Run;
end.