Componentes.Terceros.RemObj.../internal/6.0.43.801/1/RemObjects Samples/RemObjects SDK for Delphi/Auto Server/AutoServer_Client.dpr

16 lines
349 B
ObjectPascal
Raw Permalink Normal View History

program AutoServer_Client;
uses
uROComInit,
Forms,
AutoServer_ClientMain in 'AutoServer_ClientMain.pas' {AutoServer_ClientMainForm};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'AutoServer Client';
Application.CreateForm(TAutoServer_ClientMainForm, AutoServer_ClientMainForm);
Application.Run;
end.