![]() |
AW: Datei mit Standard-App öffnen und auf Beendigung warten
Zitat:
Gruß Klaus |
AW: Datei mit Standard-App öffnen und auf Beendigung warten
Hallo,
ShellExecuteEx liefert dir das Prozess-Handle (Feld hProcess) der Standard-App. Danach weiter mit deinem WaitForXXX Heiko |
AW: Datei mit Standard-App öffnen und auf Beendigung warten
Zitat:
Bei einer WindowsApp (z.B.: Foto-App) funktioniert dies leider nicht. Auch in der Registry finde ich nichts, wie ich die App erkennen und starten kann. Zitat:
Zitat:
Mir ist deshalb folgende Idee gekommen, für die ich gerade ein Testprogramm schreibe: Ich schreibe unmittelbar vor und nach dem Aufruf mit ShellExecute alle ProzessID in jeweils eine Liste. Die Differenz beider Listen müsste mit hoher wahrscheinlichkeit die ProzessID der gestarteten Anwendung sein. Ich kann dann darauf reagieren. Ich kann dies aber erst am Wochenende weiter testen und prüfen ob und wie mir Windows dazwischen funkt. Ich melde mich dann wieder. Danke, Gruß Klaus. |
AW: Datei mit Standard-App öffnen und auf Beendigung warten
Hallo,
ich viel probiert und getestet und verwende jetzt folgenden Code:
Delphi-Quellcode:
Die bisherigen Tests auf meinem Rechner liefen alle erfolgreich. Die Funktion wartet immer (auch bei Windows10-Apps) auf deren Beendigung.
function ExecAndWait2(Filename, Params: String; WindowState: Word = SW_SHOWNORMAL): Integer;
const cError = -1; cWait = 0; cNoWait = -2; var ShExecInfoW : SHELLEXECUTEINFOW; ExitInfo : PExitThreadDebugInfo; wndLstAll, wndLst : TStringList; i, a : Integer; procedure AllProcessToLst(Lst: TStringList); function EnumWindowsProcA(Wnd: HWND; LParam: TStringList): BOOL; stdcall; begin result := True; if IsWindowVisible(Wnd) then begin LParam.Add(IntToStr(Wnd)); end; end; begin EnumWindows(@EnumWindowsProcA, integer(Lst)); end; begin Result := cError; if (Filename <> '') and FileExists(FileName) then begin ShExecInfoW.Wnd := GetForegroundWindow; ShExecInfoW.cbSize := SizeOf(SHELLEXECUTEINFOW); ShExecInfoW.fMask := SEE_MASK_NOCLOSEPROCESS; ShExecInfoW.lpVerb := 'open'; ShExecInfoW.lpFile := PWideChar(WideString(Filename)); ShExecInfoW.lpParameters := PWideChar(WideString(Params)); ShExecInfoW.lpDirectory := PWideChar(WideString(ExtractFileDir(Filename))); ShExecInfoW.nShow := WindowState; wndLstAll := TStringList.Create; try AllProcessToLst(wndLstAll); if ShellExecuteExW(@ShExecInfoW) then begin result := cNoWait; try if ShExecInfoW.hProcess <> 0 then begin WaitForInputIdle(ShExecInfoW.hProcess, INFINITE); New(ExitInfo); FillChar(ExitInfo.dwExitCode, SizeOf(ExitInfo.dwExitCode), 0); repeat Application.ProcessMessages; sleep(500); GetExitCodeProcess(ShExecInfoW.hProcess, ExitInfo.dwExitCode); until not(ExitInfo.dwExitCode = STILL_ACTIVE); Dispose(ExitInfo); Result := cWait; end else // neues Handle ermitteln und auf dessen Beendigung warten: begin wndLst := TStringList.Create; try sleep(500); // warten bis App geöffnet ist AllProcessToLst(wndLst); for i := wndLst.Count - 1 downto 0 do if wndLstAll.IndexOf(wndLst[i]) > -1 then wndLst.Delete(i); if wndLst.Count > 0 then // auf Beendigung warten: begin repeat Application.ProcessMessages; sleep(500); wndLstAll.Clear; AllProcessToLst(wndLstAll); a := 0; for i := 0 to wndLst.Count - 1 do if wndLstAll.IndexOf(wndLst[i]) > -1 then inc(a); until a < wndLst.Count; result := cWait; end; finally wndLst.Free end; end; finally CloseHandle(ShExecInfoW.hProcess); end; end; finally wndLstAll.Free; end; end; end; Danke an alle Helfer. Ein schönes Wochenende. Gruß Klaus. |
Alle Zeitangaben in WEZ +1. Es ist jetzt 20:36 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz