Einzelnen Beitrag anzeigen

Klaus01

Registriert seit: 30. Nov 2005
Ort: München
5.755 Beiträge
 
Delphi 10.4 Sydney
 
#6

Re: Indy FTP Client Read Error (TidFTP)

  Alt 24. Jan 2008, 14:07
You can use the try except things to this:

Delphi-Quellcode:
try
// do some stuff
except on e:EIdReplyRFCError do
  begin
    // do exception handling
  end;
end;
Klaus
  Mit Zitat antworten Zitat