This is a simple script that helps to speak computer whatever you type in the textbox. Type the code given below in the notepad and save it as filename.vbs (you can give any filename). But the file extension will always as .vbs
Dim message, sapi
message=InputBox("Enter Text","Speech Converter")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message
In the property of file you can see that file is a VBScript File.
After making a file just double click on that file, a window will open that asks you to Enter Text. Just after entering any text, click on the OK button.