Autor Beitrag
Sy-
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starofftopic star
Beiträge: 177



BeitragVerfasst: Mo 17.10.05 15:41 
Hi all,

mein Script:

ausblenden Delphi-Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
procedure TForm1.Button8Click(Sender: TObject);
var x,y:integer; towork:string;
begin
  offnen.Filter:='E-Mail|*.eml';
  if(offnen.execute)then
  begin
    maildatei:=offnen.filename;
    try
      //msg.clear;
      msg.LoadFromFile(offnen.filename);   <--- Fehler
    finally
      email.Lines:=msg.Body;
    end;


in dem Moment wo die .eml Datei geöffnet wird, kommt es zu einer Zeitüberschreitung / Timeout.

Ich hoffe mir kann jemand helfen, finde dazu nichts :[
Sy- Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starofftopic star
Beiträge: 177



BeitragVerfasst: Mo 17.10.05 16:58 
naja, hab die Lösung mitlerweile selber gefunden.

Der benötigt ein . am Schluss der mail, umschlossen von 2 leeren Zeilen.

Gruß Sy