Componentes.Terceros.jvcl/official/3.39/examples/JvUrlListGrabber/JvUrlListGrabberDemo.dpr
2010-01-18 16:55:50 +00:00

14 lines
204 B
ObjectPascal

program JvUrlListGrabberDemo;
uses
Forms,
Main in 'Main.pas' {frmMain};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.