all groups > dotnet compact framework > october 2007 >
You're in the

dotnet compact framework

group:

Disabling Start Menu in Windows CE 5.0 App


Re: Disabling Start Menu in Windows CE 5.0 App Paul G. Tobey [eMVP]
10/31/2007 12:05:55 PM
dotnet compact framework:
Also, hiding it doesn't prevent it from becoming visible again in certain
circumstances, so you'll probably want to disable it, too (EnableWindow).

Paul T.

[quoted text, click to view]

Re: Disabling Start Menu in Windows CE 5.0 App Robert Wachtel
10/31/2007 1:31:30 PM
http://www.opennetcf.org/Forums/topic.asp?TOPIC_ID=3D1813

Robert

--=20
http://blog.robertsoft.de


"Anand Kale" <anand.kale@synerzip.com> schrieb im Newsbeitrag =
news:OCzhzo6GIHA.4476@TK2MSFTNGP06.phx.gbl...
[quoted text, click to view]
Re: Disabling Start Menu in Windows CE 5.0 App r_z_aret NO[at]SPAM pen_fact.com
10/31/2007 1:58:56 PM
On Wed, 31 Oct 2007 16:07:55 +0530, "Anand Kale"
[quoted text, click to view]

A previous post pointed to a specific answer to your question. If you
are disabling the Start menu as part of an effort to lock down the
device, then you will find it helpful to know that is often called
"kiosk mode". And that means you will find useful info if you use
google (http://groups.google.com/advanced_group_search) to look up
kiosk
in one of these newsgroups. I generally use a brute-force approach to
hide the task bar:

HWND hWnd = ::FindWindow( _T( "HHTaskBar" ), NULL );
::ShowWindow( hWnd, SW_HIDE );

But you need to make sure your app shows it before closing, or it will
remain hidden.


[quoted text, click to view]

-----------------------------------------
To reply to me, remove the underscores (_) from my email address (and please indicate which newsgroup and message).

Robert E. Zaret, eMVP
PenFact, Inc.
20 Park Plaza, Suite 478
Boston, MA 02116
Disabling Start Menu in Windows CE 5.0 App Anand Kale
10/31/2007 4:07:55 PM
Hi,
I need to disable the start menu on WinCE 5.0 pocketpc device app
screens.
IS there way to programmatically do that ?

Thx,
Anand

AddThis Social Bookmark Button