Sobald du mit on anfängst, sagst du Delphi, dass du mehrere Exceptions behandeln willst. Tust du dies nicht, führt Delphi den Code aus und bricht dann ab. Wenn du beides koppeln willst, kannst folgendes machen:
Delphi-Quellcode:
except
on E:
Exception do begin
if E.ClassNameIs('
EOleException')
then begin
{...}
end;
{...}
end;
end;
Ein im Mittelpunkt stehender Kunde steht im Weg.