Re: CreateProcess leaves child windows on rear
- From: "AliR \(VC++ MVP\)" <AliR@xxxxxxxxxxxxx>
- Date: Tue, 20 Mar 2007 16:48:38 GMT
I still don't see anything that would cause that.
AliR.
<hq4000@xxxxxxxxxxx> wrote in message
news:1174406656.012660.34880@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
The rest just waiting for the created process to complete and then
shutdown.
if( ProcessInformation.hProcess )
{
DWORD Ret = WaitForSingleObject( ProcessInformation.hProcess,
INFINITE );
DWORD ExitCode;
GetExitCodeProcess( ProcessInformation.hProcess, &ExitCode );
GetExitCodeThread( ProcessInformation.hThread, &ExitCode );
CloseHandle( ProcessInformation.hProcess );
CloseHandle( ProcessInformation.hThread );
}
else
{
}
return 0;
.
- Follow-Ups:
- Re: CreateProcess leaves child windows on rear
- From: hq4000@xxxxxxxxxxx
- Re: CreateProcess leaves child windows on rear
- References:
- CreateProcess leaves child windows on rear
- From: hq4000@xxxxxxxxxxx
- Re: CreateProcess leaves child windows on rear
- From: AliR \(VC++ MVP\)
- Re: CreateProcess leaves child windows on rear
- From: hq4000@xxxxxxxxxxx
- CreateProcess leaves child windows on rear
- Prev by Date: Using Get() and Set() instead of accessing the variable directly
- Next by Date: Re: http://forums.microsoft.com/MSDN/
- Previous by thread: Re: CreateProcess leaves child windows on rear
- Next by thread: Re: CreateProcess leaves child windows on rear
- Index(es):
Relevant Pages
|