Hoping for help with TDownloadURL Using this code that saves downloaded file. Using Delphi XE2. want to save download to memory/tstringlist not file. how to do this without adding component? Thank you!
notfound:=false;
dl := TDownloadURL.Create(self);
try
dl.URL := url;
dl.FileName := execpath+'apic1.csv'; dl.ExecuteTarget(nil); dl.Free;
except
dl.Free;
notfound:=true;
end;