How to download a file to the local PC in a synchonous mode

 
procedure TfmTestDownloader.btDownLoadClick(Sender: TObject);   
begin   
   clDownloader1.URL := 
        'http://www.clevercomponents.com/images/testimage.jpg';   
   clDownloader1.LocalFolder := 'c:\downloads';   
   clDownLoader1.Start(False);   
end; 

Add Feedback