2014年2月13日 星期四

[BCB] 關閉錯誤攔截

關閉 BCB 的錯誤攔截設定

Tools->Debuuger Options->Language Exceptions->Stop on Delphi Exceptions 和 Stop on C++ Exceptions 取消勾選

Example:
try{
do something
}catch(Exception &e){
Application->ShowException(&e);
}