I use this
procedure TForm1.Button1Click(Sender: TObject);
var
i:integer;
lpath:string;
begin
for i := 0 to ListBox1.Items.Count-1 do
begin
lPath := ListBox1.Items.Strings[i];
download(lPath);
end;
end;
procedure TForm1.Download(lpath: string);
begin
TTask.Create(...
Hi,
Here is what I would like to do.
a simple Form with a Tlistbox which would contain several URLs with a TButton and a TMemo.
To make it simple, I try as quickly as possible to go to all the URLs of my listbox and take the source page of each URL in my listbox and if in the page the word...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.