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

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.