Written on January 24th, 2009 at 5:41 am by

2 Comments

Here is simple piece of code in “C” to Hide the Taskbar.It will not be visible even if you roll the mouse over it:)It will be useful when playing games in schools and colleges to escape from admin:-)

#include<windows.h>
#include<process.h>
//coded by sham
int main()
{
    HWND h;
       while(1)
    {
            sleep(20);
            h=FindWindow("Shell_TrayWnd","");//Get handle of Taskbar
            ShowWindow(h,SW_HIDE);
}

}

hide taskbar

Get Free Newsletter
Hide Task bar C code

2 Responses to “Hide Task Bar -”C” code”


  1. thegands

    2 years ago

    awesome..!! :big_smile:

    thegands’s last blog post..Mengatasi Bug XSS Pada Theme WordPress

    Reply

  2. admin

    2 years ago

    Thanks a lot :victory:

    Reply

Leave a Reply



Previous Post:

Next Post: