2 Ways To Make Text Reader in Windows 10


If you want your computer to read the text you enter then you should follow these tips/tricks given below.

First Way To Create A Text Reader in Windows 10

  1. Open Notepad.
  2. Type or Copy&Paste this code
    CreateObject("SAPI.SpVoice").Speak"Enter your text here" 

  3. Type your text you want to narrate from your computer.
  4. Save The File as (namearea).vbs extension. 






Now, If you open the file you will hear your computer reading text.


Second Way To Create A Text Reader in Windows 10

  1. Open Notepad as usual.
  2. Type or Copy&Paste this code
    Dim Rohit Message=InputBox("Type Your Text","I will read your text")
    Set Rohit= CreateObject("SAPI.spVoice")
    Set Rohit.Voice = Rohit.GetVoices.Item(0)
    Rohit.Speak message
  3. Save The File as (namearea).vbs extension.





 

Now, If you open the file you will get a text box where you can type your text to make your computer read it.


Change Voice Gender

If you want a male voice keep the number 0.
If you want a female voice keep the number 1.



 



 


Trending Posts

What Are The Use of Function Keys F1 to F12 on The Keyboard?

How To Create A Magic 8 Ball Using HTML, CSS, and JavaScript?

The Secret Formula to Grow as a Programmer

Strengthen Your IT Infrastructure: Scalable Strategies for a Future-Proof Business

AI vs. Human Hackers: Who Wins the Cybersecurity Arms Race in 2025?

10 AI Coding Tools That Actually Made Me a Worse Programmer (2025 Edition)

The Rise of Agentic AI: How Autonomous Coding Agents Are Replacing Junior Devs

Ethical Hacking with AI: Automating Penetration Testing Using Claude and Gemini

How To Create A Parallelogram Using HTML and CSS?

Why Should You Create Programming Notebooks?