Componentes.Terceros.jvcl/official/3.32/examples/JvProgressDialog/JvProgressDialogDemo.dpr

14 lines
278 B
ObjectPascal

program JvProgressDialogDemo;
uses
Forms,
JvProgressDialogMain in 'JvProgressDialogMain.pas' {frmProgressDialogDemo};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfrmProgressDialogDemo, frmProgressDialogDemo);
Application.Run;
end.