Windows 窗体未处理的错误弹出消息

发布于 2024-09-08 17:45:59 字数 553 浏览 4 评论 0 原文

我有一个 Windows 窗体应用程序 (.NET C# 3.5)...引发错误..但我有 2 个场景:

客户端:在客户端..错误被记录到 log.txt 文件中..并且出现错误弹出消息

有关调用即时 (JIT) 调试而不是此对话框的详细信息,请参阅此消息的末尾。

**************** 异常文本 ************** System.Threading.ThreadAbortException:线程正在被中止。 在 System.Windows.Forms.Internal.IntUnsafeNativeMethods.IntSaveDC(HandleRef hDC)

...

本地:在我的本地计算机中...当应用程序抛出错误时,它会记录到 log.txt 文件中..但我不'我没有看到任何弹出消息...

所以..我想知道,我是否有一些 Windows 选项:不抛出未处理的错误?

注意:我不认为这是应用程序中的问题,因为构建版本完全相同。所以它一定是环境中的某种东西。

I have a windows forms application (.NET C# 3.5)... that is throwing an error.. but I have 2 scenarios:

Client: on the client side.. the error is logged into a log.txt file.. AND an error pop up message appears

See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Threading.ThreadAbortException: Thread was being aborted.
at System.Windows.Forms.Internal.IntUnsafeNativeMethods.IntSaveDC(HandleRef hDC)

...

Local: in my local computer... when the application throws the error, it is logged to the log.txt file.. but I DON'T see any pop up message...

so.. I was wondering, if maybe I have some Windows option to: NOT THROW unhandled errors ?

Note: I don't think it is something in the application, because the build is exactly the same version. so it must be something in the environment.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉世弥音 2024-09-15 17:45:59

.Net v1.1 和 v2.0 之间线程上未处理异常的处理方式发生了变化。听起来你的机器上正在使用 v1.1 模型,异常被吞掉了。您的 machine.config 或 app.config 文件中是否有标记

There was a change in how unhandled exceptions were treated on threads between v1.1 and v2.0 of .Net. It sounds like on your machine, the v1.1 model is being used, where the exception is swallowed. Do you have the tag <legacyUnhandledExceptionPolicy enabled='1'/> in your machine.config or app.config file?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文