Componentes.Terceros.RemObj.../internal/6.0.43.801/1/RemObjects Samples/RemObjects SDK for Delphi/MegaDemo/MegaDemoClient.dpr
2010-01-29 16:17:43 +00:00

16 lines
378 B
ObjectPascal

program MegaDemoClient;
uses
Forms,
MegaDemoClientMain in 'MegaDemoClientMain.pas' {MegaDemoClientMainForm},
MegaDemoCustomClass in 'MegaDemoCustomClass.pas';
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'RemObjects MegaDemo Client';
Application.CreateForm(TMegaDemoClientMainForm, MegaDemoClientMainForm);
Application.Run;
end.