Hide Window Task List in TaskBar ???

When window are already showed in dockbar

Hi

 

I can't find how to hide Window from the Windows task bar completly, since i use dock bar for show the opened window ?

You can say "Hey, just hide the task bar", but no, because i use it for access some folder and for the tray (yeah, i can do that with dock, but i like the design arround start bar, menu ... heyyyy, dragon are cool :p)

 

 

On windows, it's 1 line of code (ok, no check, but the idea is here):

Code: c++
  1. #include <windows.h>
  2. int main(int argc, char * argv[])
  3. {
  4.     ShowWindow(FindWindowEx(FindWindowEx(FindWindow("Shell_TrayWnd",NULL), 0, "ReBarWindow32", NULL), 0, "MSTaskSwWClass", NULL), SW_HIDE);
  5.     return EXIT_SUCCESS
  6. }

 

Here is the compiled version for those are interested :

http://www.sendspace.com/file/5lvipz

 

Just copy it in some folder, launch it, and voila, no more window task list. You can also add a run entry in the registry, so, each boot, hidding of the window. Since i used some trick for compilation, program is just 2 ko (can be reduced to < 1 ko, but, well, do it ^^)

 

Bye :)

709 views 0 replies