hi, ich würde gerne folgenden code:
Delphi-Quellcode:
DLThread1 := TptDownload.Create;
with DLThread1 do
begin
FreeOnTerminate := True;
Resume;
end;
delay(200);
DLThread2 := TptDownload.Create;
with DLThread2 do
begin
FreeOnTerminate := True;
Resume;
end;
in eine Schleife packen.
[pseudocode]
for i:=1 to anzahl do
begin
with DLThread[i] do
begin
....
[/pseudocode]
weiss jemand da ne möglichkeit?
sowas wie findcomponent() funktioniert leider nicht.
greetz