Hear Your Text Files With Notepad

Text to Speak reads any text document in a human voice. Listen your text document files, instead of straining your eyes.Now you don’t need to use any software  only need to use 3 lines of VB code.You just need to copy and paste the code in notepad. It will help you to hear huge text file with couple million lines.

Steps To step Text to Speak

  • Copy and paste below code in to note pad
Dim msg, sapi
msg=InputBox("Enter your text","Talk it")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg
  • Save file as ” Speak.vbs ”
  • Double click on that file and it will prompt you for text.
  • Enter the text document you wish to hear and press OK.
  • You will hear the text your entered in the dialog box.

Hope it is useful for you. Share your comments and questions about it in the comments box below.