PC Review


Reply
Thread Tools Rate Thread

Disabling Start Menu in Windows CE 5.0 App

 
 
Anand Kale
Guest
Posts: n/a
 
      31st Oct 2007
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


 
Reply With Quote
 
 
 
 
Robert Wachtel
Guest
Posts: n/a
 
      31st Oct 2007
http://www.opennetcf.org/Forums/topic.asp?TOPIC_ID=1813

Robert

--
http://blog.robertsoft.de


"Anand Kale" <(E-Mail Removed)> schrieb im Newsbeitrag news:(E-Mail Removed)...
> 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
>
>

 
Reply With Quote
 
r_z_aret@pen_fact.com
Guest
Posts: n/a
 
      31st Oct 2007
On Wed, 31 Oct 2007 16:07:55 +0530, "Anand Kale"
<(E-Mail Removed)> wrote:

>Hi,
> I need to disable the start menu on WinCE 5.0 pocketpc device app
>screens.
> IS there way to programmatically do that ?


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.


>
>Thx,
>Anand
>


-----------------------------------------
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
www.penfact.com
 
Reply With Quote
 
Paul G. Tobey [eMVP]
Guest
Posts: n/a
 
      31st Oct 2007
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.

<r_z_aret@pen_fact.com> wrote in message
news:(E-Mail Removed)...
> On Wed, 31 Oct 2007 16:07:55 +0530, "Anand Kale"
> <(E-Mail Removed)> wrote:
>
>>Hi,
>> I need to disable the start menu on WinCE 5.0 pocketpc device app
>>screens.
>> IS there way to programmatically do that ?

>
> 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.
>
>
>>
>>Thx,
>>Anand
>>

>
> -----------------------------------------
> 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
> www.penfact.com



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: Disabling drag-and-drop within Start Menu Man-wai Chang ToDie Windows Vista General Discussion 0 15th Feb 2008 01:28 PM
Disabling Desktop, Icons, and Start Menu =?Utf-8?B?TldyZW4=?= Windows XP Embedded 5 11th Mar 2005 12:55 AM
Disabling Start Menu (not hiding) =?Utf-8?B?R21zbmN0cnk=?= Windows XP Customization 4 10th Mar 2005 10:34 PM
Disabling explorer security loop hole for Windows XP start menu Dave Wells Windows XP Security 4 19th Nov 2003 03:09 AM
disabling info balloon on start menu Kbob Windows XP Customization 1 16th Oct 2003 11:04 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:56 AM.