Componentes.Terceros.jvcl/internal/3.36/1/examples/JvCreateProcess/CreateProcessExample.dpr

14 lines
317 B
ObjectPascal
Raw Permalink Normal View History

program CreateProcessExample;
uses
Forms,
CreateProcessExampleMainFormU in 'CreateProcessExampleMainFormU.pas' {CreateProcessExampleMainForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TCreateProcessExampleMainForm, CreateProcessExampleMainForm);
Application.Run;
end.