Delphi-Quellcode:
type
TWorkerThread = class(TThread)
private
InternalHTTPComponent: TIdHttp;
...
implementation
procedure TWorkerThread.Execute;
begin
while not Terminated do begin
GetNextJob;
try
InternalHTTPComponent.Get(CurrentJob);
except
ProcessException;
end;
end;
end;
Sollte damit dein Problem nicht gelöst sein, erklär uns doch bitte noch mal etwas genauer woran es liegt
Dani H.
At Least I Can Say I Tried