Componentes.Terceros.jcl/official/2.1.1/examples/common/sysinfo/EnvironmentExample.dpr

17 lines
303 B
ObjectPascal
Raw Permalink Normal View History

program EnvironmentExample;
{$I jcl.inc}
uses
Forms,
EnvironmentExampleMain in 'EnvironmentExampleMain.pas' {Form1};
{$R *.res}
{$R ..\..\..\source\windows\JclCommCtrlAsInvoker.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.