I want to make sure that peghelp.exe is not running when I start my
application. How do I find out if it is and then destroy the process?
I'm using this to find out if it exists :
HWND Help = ::FindWindow(_T("Help"), _T(""));
However, I always get NULL even when it is definitely running.
I have also found that when help has been started in windows that it is
difficult to terminate it, while if I call
CreateProcess(TEXT("peghelp.exe"),... then I can destroy the process.
I guess I should just leave it at seeing if anyone can help out with finding
the help window handle first though.