Visual Studio部署设置:进程没有被杀死

发布于 2024-12-14 04:29:35 字数 293 浏览 2 评论 0原文

我在 VC++ 中创建了一个表单应用程序并开发了一个部署设置。 当我通过 Visual Studio 运行源代码时,会弹出表格。然而,当我关闭它时,它并没有完全退出。任务管理器仍然显示进程正在运行。因此需要从任务管理器中显式终止。 我在表单的析构函数中编写了一个终止应用程序片段。通过 Visual Studio 运行后,任务管理器显示该进程已被终止并按预期工作。

现在,当我使用相同的源创建部署设置时,它无法正常工作。即使关闭表单后,任务管理器仍然显示正在运行的进程。

如果有人帮助我,我将非常感激!

提前致谢, 索拉布

I have created a form application in VC++ and developed a deployment setup.
We I run the sources through visual studio, the form pops up. When I close it however, it doesnot exit completely. The task manager still shows the process running. So need to kill explicitly from taskmanager.
I wrote a kill application snippet in the form's destructor. After running it through visual studio, the task manager shows that the process is killed and works as expected.

Now when I created the deployment setup with the same sources, it does not work well. The task manager still shows the process running even after closing the form.

I would really appreciate if someone helps me out!

Thanks in advance,
Saurabh

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

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

发布评论

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

评论(1

秋千易 2024-12-21 04:29:35

但是,当我关闭它时,它并没有完全退出。

这看起来像是您的应用程序代码中的问题。

因此需要从任务管理器中显式终止。我写了杀
表单析构函数中的应用程序片段。

这是个坏主意。您的应用程序应该正常关闭。您不必终止其进程。

When I close it however, it doesnot exit completely.

This looks like a problem in your application code.

So need to kill explicitly from taskmanager. I wrote a kill
application snippet in the form's destructor.

That's a bad idea. Your application should close gracefully. You shouldn't have to kill its process.

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