justin0469 Posted December 10, 2009 Report Share Posted December 10, 2009 hilarious Microsoft Word PrankAuthor: Iambetterthanu.comFiled under: Computer PranksDate: Nov 22,2007 What is the most common letter in the English language? E right? Well, what would you do if every time you typed “E” in Microsoft Word, it closed your word document and didn’t save any of your work. Well you might throw your computer out the window and kill who ever did it to you. This computer prank will drive your office friends crazy. So hell lets do it right? Step 1: Open up Micro Soft Word Step2: Press alt F11, this will open up a vba editor for word. Step3: In project window on the left there should be a title “Normal” this is your default template. Select the default document underneath it. Step4: Copy and past this code into the documentSub AddKeyBinding()CustomizationContext = NormalTemplateKeyBindings.Add KeyCode:=BuildKeyCode(wdKeyE), KeyCategory:=wdKeyCategoryCommand, _Command:="TestKeybinding"End SubSub TestKeybinding()Dim x As DocumentSet x = ActiveDocumentx.Close (False)End SubStep5: Close word Step6: Enjoy If you did this correctly the next time they load word this code will be loaded. What it will do is every time the key “E” is pressed, it will close the document and NOT SAVE. You can change the key to anything you like and below I have listed some different key options. Have fun and unleash hell. Key Options To change the key from E to something else replace this piece of the code in bold .KeyBindings.Add KeyCode:=BuildKeyCode(wdKeyE)If you want to use a different letter it is: wdKeyYOURLETTER If you want to use a key other than a letter or a number, it usualy is the keys name.Example: wdKeyBackspace Try out different options, its a lot of fun.whole bunch more here http://www.iambetterthanu.com/category/computer-pranks/ Quote Link to comment Share on other sites More sharing options...
jblosser Posted December 10, 2009 Report Share Posted December 10, 2009 Problem: semi-smart end-user <might> be able to figure out that hitting "e" equals "Word shuts down instantly".Solution: Generate a random number, add a call to kernel32's "sleep" function, feed it the random number.Result: User won't know what key triggers the shutdown, or even why it's shutting down.Caveat: I'm not a VBA programmer. May or may not work. Will try later tonight, after dart league.Code to insert before the sub TestKeyBinding:Dim Low As DoubleDim High As DoubleLow = 1001High = 200001R = Int((High - Low + 1) * Rnd() + Low)Private Declare Sub Sleep Lib "kernel32.dll" (ByVal dwMilliseconds As Long)Sub naptime()sleep Rend sub Quote Link to comment Share on other sites More sharing options...
justin0469 Posted December 10, 2009 Author Report Share Posted December 10, 2009 Ha ok the point is to fuck with them not destroy their day! its ok if they figure it out eventually because they still won't know how to fix it Quote Link to comment Share on other sites More sharing options...
Likwid Posted December 11, 2009 Report Share Posted December 11, 2009 I prefer thishttp://www.thinkgeek.com/gadgets/electronic/b278/ Quote Link to comment Share on other sites More sharing options...
cmoosego Posted December 11, 2009 Report Share Posted December 11, 2009 your geekness is starting to freak me out.... Quote Link to comment Share on other sites More sharing options...
Aerik Posted December 11, 2009 Report Share Posted December 11, 2009 Our quickie prank in the electronics lab is to sneak up on someone's workstation and use CTRL + ALT + Arrow keys to rotate their desktop sideways. Well, usually the same four people or so, because they're the only ones who haven't figured out how to turn it back yet. Quote Link to comment Share on other sites More sharing options...
redkow97 Posted December 11, 2009 Report Share Posted December 11, 2009 i prefer pranks that don't require my intervention to return the workstation to normal."someone" installed a screen saver that looked like the 'blue screen of death' on my boss's PC. he came back from lunch and nearly shit himself until he woke up the computer.I also enjoyed the day we switched two people's monitor cables while they were at lunch. You have to find 2 people who sit near each other with Windows 'wallpaper,' and switch them so their desktops look reasonably alike. they just assume the computer is frozen, and both restarted each other's machines. Quote Link to comment Share on other sites More sharing options...
jarvismb Posted December 11, 2009 Report Share Posted December 11, 2009 I also enjoyed the day we switched two people's monitor cables while they were at lunch. You have to find 2 people who sit near each other with Windows 'wallpaper,' and switch them so their desktops look reasonably alike. they just assume the computer is frozen, and both restarted each other's machines.funny.You pranksters should use the AutoIT scripting language. I use it for a lot of useful things, but you can also use it to make people's cursors jump around at random times, or always avoid a certain spot on the screen, or make it randomly click at times which really messes with people typing. Quote Link to comment Share on other sites More sharing options...
fusion Posted December 11, 2009 Report Share Posted December 11, 2009 I used to schedule desktops to reboot every 5 minutes for those who got on my nerves a tad too much. Quote Link to comment Share on other sites More sharing options...
Gump Posted December 12, 2009 Report Share Posted December 12, 2009 So how do you do that? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.