Componentes.Terceros.jvcl/internal/3.36/1/examples/JvDotNetCtrls/JvDotNetDemo.dpr
2009-03-04 12:31:55 +00:00

16 lines
319 B
ObjectPascal

program JvDotNetDemo;
uses
Forms,
JvDotNetDemoMainForm in 'JvDotNetDemoMainForm.pas' {JvDotNetDemoMainFrm};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'JVCL DotNet Controls Demo';
Application.CreateForm(TJvDotNetDemoMainFrm, JvDotNetDemoMainFrm);
Application.Run;
end.