Home » Downloads, Headline, Scripting » Hide Taskbar Source Code

Hide Taskbar Source Code

Few days ago I have created an application Hide Taskbar, which helps you to hide your taskbar with a single click or a Hotkey.

Till now I have never provided the source code of any of my softwares, but today for the first time I am giving out the source code for this program on demand of one of my reader.

First the application is not created in .NET or JAVA, it is created in a scripting language named Autohotkey. But I can assure you you can learn this in a day time. Ok leave the crap coming to the point here is source code of the Hide Taskbar-

^esc::
if toggle := !toggle
WinHide ahk_class Shell_TrayWnd
else
WinShow ahk_class Shell_TrayWnd
return

First Line: Defines Hotkey CTRL+ESC
Second Line: Enable toggling with same hotkey
Third Line: Shell_TrayWnd is the autohotkey class id of Taskabr and Winhide is used to hide it.

So what are you planning to do, hide something else? :P







Popular on Web Today

5 Responses to " Hide Taskbar Source Code "

  1. Goldberg says:

    Thank you very much Ritesh aka Mad Geek for posting the source code & info that how u made it.

  2. Burn Fat says:

    Thanks for supplying the source code. Nice to see a blogger actually respond to a readers request! :)

    - Fat Burning Dude

  3. TechChunks says:

    That was really neat! Let me see if I can hide the Windows button itself (just for fun)! ;)
    .-= TechChunks´s last blog ..The Top 20 Geeky Inventions That Will Blow Your Mind [Images] =-.

Leave a comment