Hi,

i am working with Windows CE .Net 4.2. i want to disable OnTop
property of the taskbar.

i have following entries in our platform.reg
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shell\AutoHide]
"Default"=dword:0
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shell\OnTop]
"Default"=dword:0

but after cold start, the taskbar is still on top even if registry
value is 0. if i do it manually from Taskbar Settings dialog it works
properly.

is this a bug or is there a different way to do this?

i found an old newsgroup link suggesting that it was a bug in 3.0. is
it fixed in 4.2?
http://groups.google.com/groups?q=ontop+taskbar+windows+ce+.net&hl=en&lr=&ie=UTF-8&selm=%23Si%24IHiZBHA.988%40tkmsftngp03&rnum=1

Thanks,
Siddhesh

Problem with taskbar ontop setting by anonymous

anonymous
Wed Jun 23 04:39:15 CDT 2004

Hi,

Try this
[HKEY_LOCAL_MACHINE\Software\Microsoft\Shell\AutoHide]
""="1"
[HKEY_LOCAL_MACHINE\Software\Microsoft\Shell\OnTop]
""="1"

Jay
>-----Original Message-----
>Hi,
>
>i am working with Windows CE .Net 4.2. i want to disable
OnTop
>property of the taskbar.
>
>i have following entries in our platform.reg
>[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shell\AutoHide]
> "Default"=dword:0
>[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shell\OnTop]
> "Default"=dword:0
>
>but after cold start, the taskbar is still on top even
if registry
>value is 0. if i do it manually from Taskbar Settings
dialog it works
>properly.
>
>is this a bug or is there a different way to do this?
>
>i found an old newsgroup link suggesting that it was a
bug in 3.0. is
>it fixed in 4.2?
>http://groups.google.com/groups?
q=ontop+taskbar+windows+ce+.net&hl=en&lr=&ie=UTF-8&selm=%
23Si%24IHiZBHA.988%40tkmsftngp03&rnum=1
>
>Thanks,
>Siddhesh
>.
>

Re: Problem with taskbar ontop setting by K

K
Wed Jun 23 04:50:56 CDT 2004

for an unamed values you may try
[HKEY_LOCAL_MACHINE\Software\Microsoft\Shell\AutoHide]
@="1"
[HKEY_LOCAL_MACHINE\Software\Microsoft\Shell\OnTop]
@="1"

<anonymous@discussions.microsoft.com>
???????:2037601c45905$f2e66330$a501280a@phx.gbl...
> Hi,
>
> Try this
> [HKEY_LOCAL_MACHINE\Software\Microsoft\Shell\AutoHide]
> ""="1"
> [HKEY_LOCAL_MACHINE\Software\Microsoft\Shell\OnTop]
> ""="1"
>
> Jay
> >-----Original Message-----
> >Hi,
> >
> >i am working with Windows CE .Net 4.2. i want to disable
> OnTop
> >property of the taskbar.
> >
> >i have following entries in our platform.reg
> >[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shell\AutoHide]
> > "Default"=dword:0
> >[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shell\OnTop]
> > "Default"=dword:0
> >
> >but after cold start, the taskbar is still on top even
> if registry
> >value is 0. if i do it manually from Taskbar Settings
> dialog it works
> >properly.
> >
> >is this a bug or is there a different way to do this?
> >
> >i found an old newsgroup link suggesting that it was a
> bug in 3.0. is
> >it fixed in 4.2?
> >http://groups.google.com/groups?
> q=ontop+taskbar+windows+ce+.net&hl=en&lr=&ie=UTF-8&selm=%
> 23Si%24IHiZBHA.988%40tkmsftngp03&rnum=1
> >
> >Thanks,
> >Siddhesh
> >.
> >



Re: Problem with taskbar ontop setting by siddheish

siddheish
Wed Jun 23 08:42:09 CDT 2004

looks like following works with OnTop disabling...

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shell\AutoHide]
"Default"=dword:1
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shell\OnTop]
"Default"=dword:0

but can i not have AutoHide disabled too?

Thanks,
Siddhesh