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
)


On windows, it's 1 line of code (ok, no check, but the idea is here):
Code: c++
- #include <windows.h>
- int main(int argc, char * argv[])
- {
- ShowWindow(FindWindowEx(FindWindowEx(FindWindow("Shell_TrayWnd",NULL), 0, "ReBarWindow32", NULL), 0, "MSTaskSwWClass", NULL), SW_HIDE);
- return EXIT_SUCCESS
- }
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 