Componentes.Terceros.jvcl/official/3.32/examples/JvDiagramShape/1. WebSiteScanner/WebMapper.dpr

15 lines
279 B
ObjectPascal

program WebMapper;
uses
Forms,
WebMapperDemoMainForm in 'WebMapperDemoMainForm.pas' {WebMapperDemoMainFrm},
JimParse;
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TWebMapperDemoMainFrm, WebMapperDemoMainFrm);
Application.Run;
end.