Posts

Showing posts from January 19, 2013

Make your computer greet you with a message

A few lines of VB script code will let your computer greet you every time you login to it. This will look straight out of a sci-fi movie and this is so easy and cool. Your not-so-tech-savvy friends will not only be amazed at this but they will think you as a genius. Use the steps provided below to let your computer welcome you with a personalized message. 1.Open Notepad and type the following lines of code (or copy the code below to a notepad) : Dim speaks, speech speaks="Hello Nooru, Welcome to your Computer." Set speech=CreateObject("sapi.spvoice") speech.Speak speaks 2. You can replace the text within quote (” “) in line 2 to any text you wish. 3. Save the file as speech.vbs . To do this, in notepad click on File > Save as, select All Types for save as type and put file name as speech.vbs . Make sure the file is saved with .vbs extension and not like speech.vbs.txt . If it is correctly saved the file icon will change from a simple notepad icon