有一种方法可以在错误处停止执行点吗?

时间:2013-12-17 22:11:17

标签: delphi delphi-xe5

我想知道是否有任何方法可以在Delphi错误中停止执行点

喜欢

StrToInt('1'); < ok
StrToInt('A'); < execution point stops here to show me where's the error
StrToInt('2');

1 个答案:

答案 0 :(得分:1)

设置如下:选项|调试器选项| Embarcadero调试器|语言异常,设置名为语言异常通知。你需要检查它。

IDE将在引发异常的位置中断。在您StrToInt调用内的代码中。使用调用堆栈来确定调用的来源。