My app is built in vb.net compact. All these years in all versions when user taps at the top or bottom of the screen (depending on where the task bar is located) it brings up the task bar and start menu fine. But now the latest OS build doesn't do it anymore. I'm thinking of having a button in my app to bring up the task bar but not sure how to do it.

However, in IE full screen there is a circular button that brings up the task bar. If I can accomplish it in my app that would be good.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You can use the Remote Spy tool to find out the name of your task-bar, then you can try calling FindWindow function using this name to get the handle, and finally calling ShowWindow function to get it to show. (In P/Invoke versions for FindWindow and ShowWindow use coredll.dll instead of user32.dll).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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