Click here to Skip to main content
Licence CPOL
First Posted 22 Jul 2009
Views 12,758
Downloads 218
Bookmarked 12 times

A Simplified Solution for Hiding the Taskbar and Start Orb in Vista and Windows 7

By | 21 Jul 2010 | Article
This article describes a simple solution for hiding the Taskbar and the Start Orb that works on both Vista and Windows 7.

Introduction

The article Hiding the Taskbar and Start menu (Start Orb) in Windows Vista describes a method for hiding the Vista Start Globe. Unfortunately, it's pretty complex. I found an alternate solution for hiding the Start Globe on Vista and Windows 7 that I haven't found documented anywhere on the Internet. This article describes that simplified method.

Method

The general strategy is to use P/Invoke to call the Win32 functions FindWindowEx and ShowWindow. The trick is to declare the FindWindowEx function in a slightly non-standard way and then pass it a special undocumented argument. This will allow us to hide that pesky Vista Start Globe.

The first step is to declare FindWindowEx as follows. The important part of this declaration is in the third argument. Most P/Invoke declarations for this function use a string for this argument. We're going to us an IntPtr.

[DllImport("user32.dll")]
private static extern IntPtr FindWindowEx(IntPtr parentHwnd, 
        IntPtr childAfterHwnd, IntPtr className, string windowText);

Once we've declared this function, we can access the window handle for the Start Orb by passing in the undocumented hexadecimal value 0xC017 and casting it to an IntPtr. The final argument will likely change for languages other than English, though there might be a nice international way to retrieve this string.

IntPtr hwndOrb = FindWindowEx(IntPtr.Zero, IntPtr.Zero, (IntPtr)0xC017, null);

After we've got our window handle, we can hide the window with a simple call to the ShowWindow function.

ShowWindow(hwndOrb, SW_HIDE);

The P/Invoke declaration for this function is straightforward and doesn't require any fancy modifications.

[DllImport("user32.dll")] 
private static extern int ShowWindow(IntPtr hwnd, int command);

private const int SW_HIDE = 0;
private const int SW_SHOW = 1;

Conclusion

There are two keys to making this work. The first is the way in which we declare the FindWindowEx function. We use an IntPtr type instead of a string for the class name variable. The other key is found in the arguments we pass to this function. We pass in the hexadecimal code 0xC017 cast as an IntPtr for the class name. This causes this function to treat this variable as an ATOM rather than a class name, and this particular ATOM appears to correspond to the Start Globe. Additionally, we also pass null for the window title for internationalization purposes.. These things together allow us to retrieve a window handle for the Start Globe. This solution was inspired by some rather cryptic posts at the end of this thread: Hide Vista Start Orb.

I hope this simplified method of hiding the Start Globe on Vista and Windows 7 makes your programming tasks easier and more enjoyable.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Earl Waylon Flinn

Architect
Center for the Study of Human Operator Performance
United States United States

Member

Earl Waylon Flinn currently designs and creates scientific software for psychological testing used in research and clinical settings.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralA safer way PinmemberFrank_Cheng12:01 23 Jul '10  
GeneralSimple way o kill the language dependence : ) Pinmemberpablomartin1:13 16 Jul '10  
GeneralRe: Simple way o kill the language dependence : ) PinmemberEarl Waylon Flinn8:59 20 Jul '10  
Questionprobing the windows 7 taskbar PinmemberMember 13447185:19 18 Jan '10  
GeneralDon't work in localized Windows 7 Pinmemberarnischwarz0:14 23 Aug '09  
GeneralRe: Don't work in localized Windows 7 Pinmemberpablomartin1:14 16 Jul '10  
GeneralRe: Don't work in localized Windows 7 Pinmemberarnischwarz5:28 7 Aug '10  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 21 Jul 2010
Article Copyright 2009 by Earl Waylon Flinn
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid