如何使用 pascal 在执行两个外部程序之间设置延迟/睡眠?
我有这样的代码:
begin
RunProgram:=TProcess.Create(nil);
RunProgram.Commandline:='calc.exe';
RunProgram.Execute;
RunProgram.Commandline:='notepad.exe';
RunProgram.Execute;
RunProgram.Free;
end.
我想在执行 calc.exe 后休眠或延迟
I have code like:
begin
RunProgram:=TProcess.Create(nil);
RunProgram.Commandline:='calc.exe';
RunProgram.Execute;
RunProgram.Commandline:='notepad.exe';
RunProgram.Execute;
RunProgram.Free;
end.
and I would like to put a sleep or delay after executing calc.exe
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的想法是正确的 - 就是
睡眠
。您可能需要将
Windows
单元(或者可能是一个不同的单元 - 我不熟悉 FreePascal 的单元排列)添加到您的uses
子句中,以便能够编译 <代码>睡眠功能。You had the right idea - it's
Sleep
.You may need to add the
Windows
unit (or possibly a different one - I'm not familiar with FreePascal's unit arrangement) to youruses
clause to be able to compile theSleep
function.