vote up 1 vote down star

We have an application that downloads some files in the background. Our application pops up when an Internet connection is made, and after prompting the user to accept the downloads, we'd like to switch back to the home screen while we do our stuff.

We can't work out how to do to this. We can emulate pressing "back" a few times, which sometimes works, but where you end up depends on what the user was doing when the Internet connection happened.

So, can someone provide pointers to how to do this?

Thanks.

Paul.

flag

67% accept rate

2 Answers

vote up 1 vote down check

Can you try setting the today screen as the foreground window?

HWND hWnd = FindWindow(_T("DesktopExplorerWindow"), _T("Desktop")); SetForegroundWindow(hWnd);

link|flag
We tried this - couldn't find a matching window :( – Paul Nov 10 '08 at 17:19
Using Remote Spy to look at windows mobile 5 smartphone, it looks like the desktop doesn't have a Window name whereas pocket pc does. Could you try: HWND hWnd = FindWindow(_T("DesktopExplorerWindow"), NULL); – Snailslug Nov 10 '08 at 17:25
Bingo. That worked. Thanks very much. – Paul Nov 10 '08 at 19:17
No problem! Glad it worked. – Snailslug Nov 10 '08 at 19:43
vote up 1 vote down

Why don't you simply hide your app?

Using a Notification shell object instead of popping up a full screen window might be a better alternative. Details here.

link|flag
Interesting idea. The customer has requested this behaviour, but we could go back and ask if they'd accept notifications – Paul Nov 10 '08 at 15:56
According to that link, it only works on PocketPCs. We need to support Smartphones too :( – Paul Nov 10 '08 at 15:58
Oh! :-( I must say I never tried it on SmartPhones – Serge - appTranslator Nov 10 '08 at 16:10

Your Answer

Get an OpenID
or

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