The photo and the text can be changed by modifying the about.php file.Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

Jan
08

Going In and Out - Computer Prank

Posted under Better than you Daily by Jeff Dempsey

If you are new to the site, sign up for the RSS Feed. All new sign ups get punch and pieRSS feed. Thanks for visiting!


I created this prank from and idea I had in a previous prank. The old prank simply zoomed in every time you pressed a certain key ( How evil…. really it sucked). So I thought I’d add a couple changes and turn that simple zoom into a drunken night of code. This new adaptation of the old prank is very simple. Any where between 1 and 2 seconds this Timer is called. In the timer section it selects a random number from 500 to 1 (this is the zoom percentage). So when ever you open a word document it will zoom in any where from 500 to 1, every 1 to 2 seconds (With me ? Dont worry all you need to do is copy and paste). So, how do you do it…? Step 1: Open Microsoft Word

word.jpg

Step 2: Press Alt F-11 (This will open the VBA Editor

vba.jpg

Step 3: Select your Normal Template by double clicking “This Document”

normal.jpg

Step 4: Copy the code below into your normal template. Remember to re-type any “s, they dont always transfer over correctly in the copy/paste process.
Sub AutoExec()
counter = CStr(Int((2 - 1 + 1) * Rnd + 1))
Application.OnTime When:=Now + TimeValue("00:00:" + counter), _
Name:="Timer"
End Sub
Sub Timer()
On Error Resume Next
counter = CStr(Int((500 - 1 + 1) * Rnd + 1))
ActiveDocument.ActiveWindow.View.Zoom.Percentage = counter
Call AutoExec
End Sub

Step 5: SAVE

Step 6: Enjoy

If you did this correctly the next time you open a word document or click to create a new document this code will be called. Soon they will be swearing and saying how they got some awful virus. You will know better and it up to you if you fix it for them.

, , , , ,

StumbleUpon It!

  1. david Said,

    kool it works

Add A Comment