Thema: Delphi txt in Memo

Einzelnen Beitrag anzeigen

Micha

Registriert seit: 21. Jul 2003
Ort: Neumarkt
263 Beiträge
 
#2

Re: txt in Memo

  Alt 11. Jun 2004, 10:11
Habs jetzt so gemacht, dass ich die File zuerst in einem txt-File speichere.
So funktionierts:

Delphi-Quellcode:
procedure Tfrm_main.Button5Click(Sender: TObject);
const
  // URL Location
  SourceFile = 'http://blabla.de/bla.php';
  // Where to save the file
  DestFile = 'c:\bla.txt';
begin
  if DownloadFile(SourceFile, DestFile) then
  begin
    ShowMessage('Download succesful!');
    // Show downloaded image in your browser
    ShellExecute(Application.Handle, PChar('open'), PChar(DestFile),
      PChar(''), nil, SW_NORMAL)
  end
  else
    ShowMessage('Error while downloading ' + SourceFile)

end;
  Mit Zitat antworten Zitat