Componentes.Terceros.RemObj.../internal/5.0.24.615/1/RemObjects SDK for Delphi/Templates/_Client/$PRJNAMEClient.dpr

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.