4
I would like to disable the function from which Debugger notifies me of an Exception in a code snippet.
Example:
try
Text := CurrToStrF('Erro', ffNumber, 2);
except
Text := '0,00';
end;
During the above code debugging sometimes the exception is launched and the debugging pauses displaying a message on the screen.
However, as I know he will be making the exception, I wanted Delphi to ignore the exceptions only in that part.
Is there a directive (or other means) that warned the debugger not to stop?
I’m using Delphi 2009
What version of
delphi
you’re using?– Paulo Roberto Rosa
The version used is Delphi 2009
– Stribus