All Forums
Microsoft Windows CE
General CE
Hide the Taskbar
Forum Locked
Send Topic to a Friend
Printer Friendly
Author
Topic
KnowledgeBase
296 Posts
Posted - 26 Feb 2002 : 09:44:04
Q: I don't want the Windows CE taskbar to show up below my application. How can I hide it?
Add the following keys to your CE registry to minimize the taskbar to a short bar:
[HKEY_LOCAL_MACHINE\Software\Microsoft\Shell\OnTop]
"Default"=dword:0
[HKEY_LOCAL_MACHINE\Software\Microsoft\Shell\AutoHide]
"Default"=dword:1
You can also hide the taskbar programatically:
HWND hTaskBarWnd = ::FindWindow(_T("HHTaskBar"), NULL);
if (hTaskBarWnd)
{
::EnableWindow(hTaskBarWnd, FALSE);
::ShowWindow(hTaskBarWnd, SW_HIDE);
}
When exiting your application, use SW_SHOW and set Enable to TRUE.
We also have
managed code
versions of this function.
See
topic 40
for details about how to suppress the desktop entirely.
Edited 9-Jul-2003 by ctacke: added managed code links
Topic
Forum Locked
Send Topic to a Friend
Printer Friendly
Jump To:
Select Forum
Documentation
White Papers
Documentation
Announcements and Public Posts
Hardware
General Hardware, ADSmartIO, Digital I/O and A/Ds
Cables and Connectors
Displays
Ethernet, IR, Serial, CAN and high speed data
Microsoft Windows CE
The Basics (CE)
CE FAQ
General CE
CE Downloads and Documents
eVC Application Development
CE Sample Applications and Utilities
eVB Application Development
.NET Application Development
CE Drivers
CE Flash, CF and PCMCIA
CE Audio and Multimedia
Embedded Linux
Linux Open Discussion
Linux FAQ
Linux Downloads and Documents
Atom Catalyst
Linux for Atom-based products
Atom Firmware
Atom FAQ
Windows Embedded Standard
Microsoft Windows CE for Atom
Catalyst Discussion
Zypad
Zypad Discussion
Microsoft Windows CE
Documents and Downloads
Other Operating Systems
VxWorks FAQ
VxWorks Discussion
OS-9 FAQ
--------------------
Home
Active Topics
Frequently Asked Questions
Member Information
Search Page
Eurotech Support Forums
© Eurotech Inc.
This page was generated in 0.02 seconds.
Snitz Forums 2000