Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 .NET WinForms 中有一个这样的提示,我可以在应用程序级别捕获任何未捕获的异常。
是否也可以在 Delphi 中完成 - 在异常源无法与 try/except 块绑定的情况下。
您可以将事件处理程序附加到Application.OnException并在那里处理任何未处理的异常。
Application.OnException
根据您的 Delphi 版本,您可以
Application.OnException := DoApplicationException
TApplicationEvents