可以将空窗口句柄传递给 ShellExecute 吗?

发布于 2025-01-08 08:46:55 字数 306 浏览 1 评论 0原文

我有一个 Delphi 控制台应用程序,最后需要启动两个应用程序之一。

我在使 ShellExecute 正常工作时遇到一些问题,而且我认为该问题与没有控制台应用程序的句柄有关。

令我悲伤的行是:

ShellExecute(0, 'open', 'someapplication.exe', nil, nil, SW_SHOWNORMAL);

我认为句柄中的 0 是问题,因为它编译正常并在调试器中运行正常,但如果我尝试运行可执行文件,我会收到未处理的错误(控制台应用程序认为就这样愉快地结束了)。

I have a Delphi console application that at the end needs to launch one of two applications.

I'm having some problems getting ShellExecute to work without erroring, and I think the problem is associated with not having a handle for the console applicaiton.

The line that is causing me grief is:

ShellExecute(0, 'open', 'someapplication.exe', nil, nil, SW_SHOWNORMAL);

I think that the 0 in the handle is the problem as it compiles OK and runs in the debugger OK, but if I try to run the executable I get an unhandled error (the console application thinks that it has finished happily).

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

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

发布评论

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

评论(1

乱了心跳 2025-01-15 08:46:55

hwnd 参数传递 0 就可以了。 文档对该参数的描述如下:

用于显示 UI 或错误消息的父窗口的句柄。如果操作不与窗口关联,则该值可以为 NULL。

您的错误是由于其他原因造成的。

Passing 0 for the hwnd parameter is fine. The documentation describes the parameter thus:

A handle to the parent window used for displaying a UI or error messages. This value can be NULL if the operation is not associated with a window.

Your error is due to something else.

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