I have a Windows CE embedded 6.0 application that opens another app in the background, and I want to bring the other app to the front. I first tried SetParent with the third party app's MainWindowHandle and it didnt work. I then tried SetActiveWindow on the same MainWindowHandle again and it didnt work. This led me to believe that the MainWindowHandle was messed up, and when I print it on the console, its always 0. This brings me to my first question: Is it possible that the dev for the app forgot to mention what the MainWindow is? Or is it assigned automatically in .NET?

Secondly, now that that approach failed, I tried to EnumWindows, then get the ID for each window and match it to the process Id I knew for my required program. This gave me an exception 0x80131515 saying "EnumWindows" is not supported. I have imported EnumWindows from CoreDll just fine. Second question: what could be the cause of this error? What am I doing wrong?

Sorry! Here's some code (Assume VCProcess has already been started):

    [DllImport("coredll.dll")]
static extern int EnumWindows(CallbackDef callback, int lParam);

    [DllImport("coredll.dll")]
    static extern int GetWindowThreadProcessId(IntPtr hWnd, int pid);

    static void Main()
    {
        callBackPtr = new CallBackPtr(Report);  
        EnumWindows(callBackPtr, 0);
    }

    public static bool Report(int hwnd, int lParam)
    {
        int pid = 0;
        GetWindowThreadProcessId(hWnd, pid);
        if (pid == VCProcessId)
        {
            SetForegroundWindow(hWnd);
        }
        MessageBox.show("Window handle is "+hwnd);
        return true;
    }
link|improve this question

80% accept rate
1  
Question is missing something important: code. – sixlettervariables Apr 18 '11 at 21:25
feedback

1 Answer

up vote 1 down vote accepted

Your OEM must not have included support for EnumWindows. You could try FindWindow instead.

I would probably P/Invoke SetForegroundWindow to do this. SetActiveWindow does not work if the application is in the background.

-PaulH


Edit

P/Invoking EnumWindows can't throw a System.NotSupportedException (unless you throw it in your code) and GetLastError() wouldn't return an HRESULT COR_E_NOTSUPPORTED. There's something fishy in your code.

link|improve this answer
I doubt EnumWindows can be omitted from the OS. I'd like to see the actual calling code. – ctacke Apr 19 '11 at 2:27
I didn't think so either, but there's a note in the MSDN page that suggests it can. "...and some devices may not support this API." (Unless they stick that disclaimer on all WCE APIs just because) msdn.microsoft.com/en-us/library/ms960376.aspx – PaulH Apr 19 '11 at 3:06
Yeah, that's the catch-all disclaimer. I would take serious kernel hacking to remove it, and removing it would probably break the Shell anyway. – ctacke Apr 19 '11 at 13:17
FindWindow combined with SetForegroundWindow worked for me. I'll mark this as an answer. Thanks :) – Rishi Apr 19 '11 at 19:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.