ss_blog_claim=752cdf4fa7cc7b60527b400da1af07d5

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

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

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


  1. thegands

    1 year ago

    awesome..!! :big_smile:

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


  2. admin

    1 year ago

    Thanks a lot :victory:

Leave a Reply