- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试运行隐藏的应用程序,但应用程序表单仍然可见。
ShellExecute(Handle, nil, 'app.exe', nil, nil, SW_HIDE);
如何在Delphi中运行隐藏的应用程序?
最佳答案
我建议改用CreateProcess
,因为它返回新启动的应用程序的进程ID,您可以使用它来获取窗口的句柄。这是我一直在使用的一个功能,也许你可以去掉不必要的片段并根据你的需要进行调整?
// record to store window information
TWndInfo = record
pid: DWord;
WndHandle: HWND;
width, height: Integer;
end;
PWndInfo = ^TWndInfo;
{$HINTS OFF}
{ .: ExecNewProcess :. }
function ExecNewProcess(const ProgramName: String;
const StartHidden, WaitForInput: Boolean; out WndInfo: TWndInfo): Boolean;
var
StartInfo: TStartupInfo;
ProcInfo: TProcessInformation;
R: TRect;
SL: TStringList;
{$REGION 'EnumProcess'}
function EnumProcess(hHwnd: HWND; lParam: Integer): Boolean; stdcall;
var
WndInfo: PWndInfo;
pid: DWORD;
begin
Result := True;
WndInfo := PWndInfo(lParam);
if (WndInfo = nil) or (hHwnd = 0) then
exit;
GetWindowThreadProcessId(hHwnd, pid);
if (pid = WndInfo.PID) then
begin
if (WndInfo.WndHandle = 0) and (IsWindowVisible(hHwnd)) then
WndInfo.WndHandle := hHwnd;
//Result := False;
end;
end;
{$ENDREGION}
begin
Result := False;
ZeroMemory(@StartInfo, SizeOf(TStartupInfo));
ZeroMemory(@ProcInfo, SizeOf(TProcessInformation));
StartInfo.cb := SizeOf(TStartupInfo);
StartInfo.dwFlags := STARTF_USESTDHANDLES;
if StartHidden then
begin
StartInfo.dwFlags := STARTF_USESHOWWINDOW or StartInfo.dwFlags;
StartInfo.wShowWindow := SW_SHOWMINNOACTIVE;
end;
Result := CreateProcess(PChar(ProgramName), nil, nil, nil, False, 0, nil,
nil, StartInfo, ProcInfo);
try
if Result then
begin
WndInfo.WndHandle := 0;
WndInfo.PID := ProcInfo.dwProcessId;
if WaitForInput then
WaitForInputIdle(ProcInfo.hProcess, INFINITE);
EnumWindows(@EnumProcess, Integer(@WndInfo));
if (WndInfo.WndHandle <> 0) then
begin
if (StartHidden) then
ShowWindow(WndInfo.WndHandle, SW_HIDE);
Windows.GetWindowRect(WndInfo.WndHandle, R);
WndInfo.Width := R.Right - R.Left;
WndInfo.Height := R.Bottom - R.Top;
end;
end;
finally
CloseHandle(ProcInfo.hProcess);
CloseHandle(ProcInfo.hThread);
end;
end;
{$HINTS ON}
关于Delphi:shellexecute 和 sw_hide,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8273588/
我想使用 ShellExec 在“配置”模式下运行屏幕保护程序。我使用这个 (Delphi) 调用: i:= ShellExecute(0, 'open', PChar('c:\temp\test.
我需要使用 ShellExecute 从我的 VB6 代码执行一个外部程序:我面临的问题是,当路径字符串有任何空间时,它不起作用: Dim Path As String Path = "E:\PROY
我是shell脚本的新手,最近我在脚本中看到一个命令“:>文件”,我不明白它的意思,谁能告诉我这个命令在做什么? 提前致谢 最佳答案 :是一个空操作。 >是重定向,因此文件被 no-op 命令的输出覆
有了这个 ShellExecute(Handle, 'print', PChar(ExtractFilePath(ParamStr(0))+'Test.txt'), nil, nil, SW_H
我尝试通过delphi在shell中执行命令,但它不起作用。我使用这个脚本: var shellexecommand:string; begin ShellExecute(0, nil, 'cmd.e
我正在尝试使用ShellExecute在 Excel 中打开文件。我在MSDN论坛上阅读了有关该函数的信息,发现了以下有关句柄的信息,即第一个参数: “hwnd [in] 用于显示用户界面 (UI)
我有一个程序在执行 ShellExecute() 指令时崩溃。如果我使用 system() 方法,一切正常,但我读过 system() 是邪恶的...... 我使用的是 Visual Studio 2
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
例如我需要运行: ShellExecute(NULL, "open", "program.exe", NULL, NULL, SW_HIDE); 作为新线程,但我不知道如何。我试过这个: HANDLE
我的任务是每周检查一次数据库并检查所有链接。我通常在 PHP 中工作,但在 PHP 中这样做会非常慢(实际上它会在大约 100 个 URL 后使页面超时),所以我决定制作一个快速的 C++ 应用程序。
我正在使用 ShellExecute(NULL, L"open", szSomeDirectory, 0, 0, SW_SHOWDEFAULT) 在资源管理器中打开一个目录。 我正在尝试打开一个目录,
我正在使用 ShellExecute WIN API 来运行 DOS 命令,因为在我运行应用程序时会看到 DOS 命令闪烁。下面是 ShellExecute API 调用。 ret = ShellEx
Createprocess API 有一个选项可以创建带有 CREATE_SUSPENDED 标志的进程。相似之处是,ShellExecute API 是否有可能在挂起状态下创建进程。 最佳答案 没有
程序 1 使用 SetEnvironment 并调用 ShellExecute 来启动程序 2。程序 2 调用 GetEnvironment 并从中检索值。令人惊讶的是,正如我在 MSDN 中读到的那
我正在学习如何使用 Python 打印文件。我找到了很多方法来做到这一点,我见过的最常见的方法之一是使用 win32api 模块。 import win32api win32api.ShellExec
成功时,ShellExecute 返回一个句柄。 我们是否需要关闭这个句柄,如果需要,如何关闭? 根据我微软公布的例子,我们不需要关闭这个句柄。但是 ShellExecute 本身的文档对这个主题保持
我有一个 VB6 应用程序,它使用以下方法打开文件及其关联的应用程序: ShellExecute(0, "open", filename, params, vbNullString, vbNormal
我计划使用 ShellExecute 作为用 delphi 2007 编写的应用程序的更新程序,我想知道 ShellExecute 是否可以在大多数使用 Win 的计算机上运行,或者是否会因为某些
我有一个 Delphi 应用程序,它使用 ShellExecute 在按下按钮时调用第二个 Delphi 应用程序。 应用程序存储在同一服务器上的同一网络共享上。它们的路径格式如下: const
我有一个希望很快的问题:是否可以稍微延迟 ShellExecute 的执行? 我有一个带有自动更新程序的应用程序。下载所有必需的文件等后,它将当前文件重命名为 *.OLD,并将新文件重命名为以前的文件
我是一名优秀的程序员,十分优秀!