Registriert seit: 2. Sep 2004
Ort: Allgäu
246 Beiträge
Delphi 7 Enterprise
|
Re: JVCreateProcess und Show Window
8. Dez 2009, 14:15
Hi,
habs eben so hinbekommen:
Delphi-Quellcode:
var
ProcessHandle : THandle;
begin
try
ProcessHandle := FindWindow(nil,PChar('BlackMirror'+IntToStr(ARow)));
if IsWindowVisible(ProcessHandle)
then ShowWindow(ProcessHandle , SW_HIDE)
else ShowWindow(ProcessHandle , SW_SHOW);
except
end;
end;
Gruß
tom
Tom Just DO it
|