可以将空窗口句柄传递给 ShellExecute 吗?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为
hwnd
参数传递 0 就可以了。 文档对该参数的描述如下:您的错误是由于其他原因造成的。
Passing 0 for the
hwnd
parameter is fine. The documentation describes the parameter thus:Your error is due to something else.