卸载应用程序域时出错。 (HRESULT 异常:0x80131015)关闭表单时发生

发布于 2024-10-17 02:54:53 字数 136 浏览 2 评论 0原文

我正在使用登录表单来获取主表单。当密码正确时,登录表单调用主函数。即使我命令登录表单关闭,它也不会显示为关闭,它在任务栏中仍然最小化。但是,当我关闭主窗体时,会出现异常“卸载应用程序域时出错。(来自 HRESULT 的异常:0x80131015)”。请帮忙。

I am using a login form to get a main form. Login form calls the main when the password is correct. Even if I commanded the login form to close, it doesnt show as closed, it remains minimized in the taskbar. But when i close the main form when its running the exception "Error while unloading appdomain. (Exception from HRESULT: 0x80131015)" is given. Please help.

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

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

发布评论

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

评论(3

迷你仙 2024-10-24 02:54:53

Winforms 不支持 AppDomain。它会爆炸,因为表单无法关闭。它甚至不知道它的存在,它在另一个AD中。不要尝试使其工作,仅在默认域中创建表单。

Winforms doesn't support AppDomains. It bombs because the form won't close. It doesn't even know it exists, it is in another AD. Don't try to make this work, only create forms in the default domain.

残月升风 2024-10-24 02:54:53

这是 Microsoft 报告的错误。有一个解决方法 - 在关闭父窗体之前调用 reportViewer.LocalReport.ReleaseSandboxAppDomain() 方法。

例子:

     private void formname_FormClosing(object sender, FormClosingEventArgs e)
           {
               reportViewername.LocalReport.ReleaseSandboxAppDomain();
           }

This is a reported Microsoft bug. There is a workaround for it - to call reportViewer.LocalReport.ReleaseSandboxAppDomain() method before closing the parent form.

Example:

     private void formname_FormClosing(object sender, FormClosingEventArgs e)
           {
               reportViewername.LocalReport.ReleaseSandboxAppDomain();
           }
那一片橙海, 2024-10-24 02:54:53

修改 FormClosing 事件期间发生的情况,只需添加 reportViewer1.Dispose();

protected override void OnFormClosing(FormClosingEventArgs e)
{
      base.OnFormClosing(e);
      reportViewer1.Dispose();
}

Modify what happens during the FormClosing event, in there you just have to add reportViewer1.Dispose();

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