Componentes.Terceros.RemObj.../internal/6.0.43.801/1/RemObjects SDK for Delphi/Templates/_Client/$PRJNAMEClient.dpr
2010-01-29 16:17:43 +00:00

15 lines
236 B
ObjectPascal

program $PRJNAMEClient;
uses
uROComInit,
Forms,
fClientForm in 'fClientForm.pas' {ClientForm};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TClientForm, ClientForm);
Application.Run;
end.