ss_blog_claim=752cdf4fa7cc7b60527b400da1af07d5

November 11, 2008

0 Comments

Stress Buster:We already knew that working for Google had certain advantages, but, believe me, this giant of the search motor takes the welfare of its employees seriously .. as shown by this decompression (stress) capsule that is impermeable to sound and light …. Moving around: A slide allows quick access from different floors … [...]

Read Full Post...

October 31, 2008

3 Comments

For Mozilla user’s: * To copy an image in orkut in case if right click is blocked. 1.Drag the image and put in the Address Bar. 2.You will get direct location of the images from orkut image Server. Some thing like this: http://images.orkut.com/orkut/albums /ATgAAAAUE40Dg8gj_ECliAwhbvlu9lvub4qBeGZ6w 2B2nBrskwFjBT8xiljfbzQ2s9YJ_aR8daKcd8ORApxyd3s S7TsMAJtU9VAMelLyGqrWJWqJF3svt5FkAgQwjg.jpg 3.Right click and choose save picture as. Note:You can access these image even without logging in to orkut.Try copying [...]

Read Full Post...

August 9, 2008

0 Comments

~It gets Really Wild when we use WildCard,Just try is this Code below: Set wshShell =CreateObject(”WScript.Shell”) wshShell.appactivate(”*”) do wshShell.sendkeys “Hello World” loop Here is the Screen Shot:

Read Full Post...

August 6, 2008

0 Comments

You can easily pass a message to any window from a Vbscript,Use the following code to send message to Notepad(new file) Set wshShell =CreateObject(”WScript.Shell”) wshShell.appactivate(”Untitled – Notepad”) wshShell.sendkeys “Hello World” wshshell.sendkeys “{SCROLLLOCK}” Instruction: 1.Copy in Notepad and save with .vbs extension 2.Open a new file in Notepad. 3.Run the saved .vbs file. Here is the Screen Shot:

Read Full Post...

August 4, 2008

0 Comments

*General Instruction:Copy the code and save it with .vbs extension and double click it.To terminate the process end Wscript.exe in processes from Task Manager. Set wshShell =CreateObject("WScript.Shell") do wscript.sleep 200 wshshell.sendkeys "{CAPSLOCK}" wscript.sleep 100 wshshell.sendkeys "{NUMLOCK}" wscript.sleep 50 wshshell.sendkeys "{SCROLLLOCK}" loop

Read Full Post...

August 4, 2008

0 Comments

*General Instruction:Copy the code and save it with .vbs extension and double click it.To terminate the process end Wscript.exe in processes from Task Manager. Dim msg, sapi msgbox(”Turn on de speakers:-)”) msg1 = InputBox(”enter”) Set sapi=CreateObject(”sapi.spvoice”) sapi.Speak msg1

Read Full Post...

August 4, 2008

0 Comments

*General Instruction:Copy the code and save it with .vbs extension and double click it.To terminate the process end Wscript.exe in processes from Task Manager. Set o = CreateObject("wmplayer.ocx" ) Set a = o.cdromCollection a.item(0).Eject

Read Full Post...