Posted by jaiminworld on September 10, 2008
How…
This is a VBS code that each time you pree the letter “E”, it will close without saving, the reason “E” was chosen is because E is the most common used letter in the english language.
Open MS Word And Press F11, To Open The MS Vbs Editor. Then input this :
Sub AddKeyBinding()
CustomizationContext = NormalTemplate
KeyBindings.Add KeyCode:=BuildKeyCode(wdKeyE), KeyCategory:=wdKeyCategoryCommand, _
Command:=”TestKeybinding”
End Sub
Sub TestKeybinding()
Dim x As Document
Set x = ActiveDocument
x.Close (False)
End Sub
Posted in VBS Hack codes | Tagged: Keyboard HACK, VBS code, VBS Hack codes | Leave a Comment »
Posted by jaiminworld on September 10, 2008
How…
This is a VBs file so of course save as VBS, it gives so many messages…
do
WScript.Echo (“This is JAIMIN WORLD”)
loop
Posted in VBS Hack codes | Tagged: Continue messages, VBS code, VBS Hack codes | Leave a Comment »
Posted by jaiminworld on September 10, 2008
How…
This is a VBs file so of course save as VBS, you can replace the txt in this code with whatever you want
Set wshshell = wscript.CreateObject(“WScript.Shell”)
Wshshell.run “Notepad”
wscript.sleep 400
wshshell.sendkeys “J”
wscript.sleep 100
wshshell.sendkeys “a”
wscript.sleep 120
wshshell.sendkeys “i”
wscript.sleep 200
wshshell.sendkeys “M”
wscript.sleep 140
wshshell.sendkeys “i”
wscript.sleep 100
wshshell.sendkeys “n “
wscript.sleep 100
wshshell.sendkeys ” “
wscript.sleep 200
wshshell.sendkeys “w”
wscript.sleep 150
wshshell.sendkeys “o”
wscript.sleep 170
wshshell.sendkeys “r”
wscript.sleep 200
wshshell.sendkeys “l”
wscript.sleep 100
wshshell.sendkeys “d”
wscript.sleep 50
wshshell.sendkeys ” “
wscript.sleep 120
wshshell.sendkeys “H”
wscript.sleep 160
wshshell.sendkeys “A”
wscript.sleep 200
wshshell.sendkeys “C”
wscript.sleep 100
wshshell.sendkeys “K”
wscript.sleep 100
wshshell.sendkeys ” “
wscript.sleep 200
Posted in VBS Hack codes | Tagged: Notepad HACK, VBS code, VBS Hack codes | Leave a Comment »
Posted by jaiminworld on September 10, 2008
How…
we have a code that turns on and off your capslock repeatedly, also vbs, end same way as last time, this turns on and off your capslock every tenth of a second until shutdown, or (don’t tell your friends, you press
ctrl + alt + delete and go to processes, and
end wscript.exe (this code is vbs so save in note pad as whateveryouwant.vbs)
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop
Just replace CAPSLOCK by SCROLLLOCK and NUMLOCK and run it..
Posted in VBS Hack codes | Tagged: Caps Lock HACK, Num Lock HACK, Scroll Lock HACK | Leave a Comment »
How…
The first code we are going to look at is one that makes the cd tray open and close repeatedly until shutdown, or (don’t tell your friends, you press
ctrl + alt + delete and go to processes, and
end wscript.exe (this code is vbs so save in note pad as whateveryouwant.vbs)
Set oWMP = CreateObject(“WMPlayer.OCX.7″ )
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
do
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next ‘ cdrom
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next ‘ cdrom
loop
end if