Re: CreateProcess - how to end it?
"Jen" <leonard522@aol.com> wrote in message
news:1156892894.408394.41880@m79g2000cwm.googlegroups.com...
| Hi,
| I have a program that has two executables. One program has a button
| that allows the user to start the second program. I use CreateProcess
| to do that. Then the user can continue to use both applications.
|
| The problem is that one of the specs of the program is that if the user
| closes the first program, the second program also needs to close. I
| was using TerminateProcess, but found that it didn't "correctly" close
| my application. It did close it down, but I want it to end as if the
| user had pressed the Exit or Close button in the application. Is there
| a way to do that?
|
| Thanks!
| Jen
Here's what I use; placed in the main application module (InitInstance):
CWnd* pPrevApp = CWnd::FindWindow(NULL, "MyApp");
if(NULL != pPrevApp)
{
pPrevApp->PostMessage(WM_QUIT); // or WM_CLOSE
do
{ Sleep(250); }
while(pPrevApp = CWnd::FindWindow(NULL, "MyApp"));
}
There are issues with orderly shutdown however; especially when running
threads are present. For this purpose you'll have to cover both the
ExitInstance() and the OnQueryEndSession() message handlers to effect an
orderly shutdown.
An alternative method would be to create a globally named event and signal
it to shut down the previous instance...
-- Ed.
-----------------------------------------------------
In dictatorships, you need courage to fight evil; in the free world, you
need courage to see the evil."
Natan Sharansky
F9E7707A2AF502D0A899C6ACB43A2D35EB7E->bin->b64