All Posts filed under »C snippets« Follow This Topic

January 24, 2009

2 Comments

Share 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 [...]

December 8, 2008

0 Comments

Share Here is a simple “C” code that i wrote to disable paste option.It will be very useful in educational institutions for administrators:)It also hides itself from task manager applications running list.Here is the code. /* coded by sham*/ /* To "disable Paste" option in windows*/ /*clipboard will be present at system 32 folder*/ #include<windows.h> [...]