delphi中如何判断外部应用程序何时结束
我正在使用 ShellExecute 运行外部应用程序 我如何判断外部应用程序何时结束?
这是我的代码
theProgram := 'MySql.exe';
itsParameters := ' -u user1 -ppassword -e "create database abc"’;
rslt := ShellExecute(0, 'open',
pChar (theProgram),
pChar (itsParameters),
nil,
SW_SHOW);
I am using ShellExecute to run external application
How can i tell when the external application ends ?
Here my code
theProgram := 'MySql.exe';
itsParameters := ' -u user1 -ppassword -e "create database abc"’;
rslt := ShellExecute(0, 'open',
pChar (theProgram),
pChar (itsParameters),
nil,
SW_SHOW);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试以下功能。 WaitForSingleObject 可以满足您的需要。
Try the following function. WaitForSingleObject does what you need.
ShellExecute 是一个直接的 WinAPI 函数。要获取有关已执行进程的任何信息,您需要使用 ShellExecuteEx 代替。
ShellExecute is a direct WinAPI function. To obtain any information on the executed process, you need to use ShellExecuteEx instead.