Hey. I am trying to make a "virus" that will not let the user exit the program even with pressing Command+Q (oh, ya, I have an Apple). Here is what I have so far:
if (keylistener.getKeyCode()==81){
System.out.println("Works");
}
I have the println just to see if it works (which it does), but is there a way to "kill" the request or have the computer not recognize the command key if pressed?
Thanks in advance!