Thema: Delphi Exceptions speichern

Einzelnen Beitrag anzeigen

Tommy1988
(Gast)

n/a Beiträge
 
#4

Re: Exceptions speichern

  Alt 21. Apr 2008, 14:44
So in etwa dieses hier:

Delphi-Quellcode:
var
ex: Exception;
i: SmallInt;
begin
try
 i := StrToInt(Edit1.Text); // ich gib ne kommazahl ein, um ex zu erreichen
except
on ex: Exception do
 ShowMessage('Exception detected:' +#13+
 ex.message);
end;
Aber da gibts nix wie "SafeToFile" oder so :/
  Mit Zitat antworten Zitat