Text-To-Speech in VBS
This tip demonstrates how to use SAPI for Text-To-Speech capability in VB Script BlankDim message,sapi message=InputBox(“Write something in textbox”,”Hemant :)”) set sapi = CreateObject(“sapi.spvoice”) sapi.Speak message copy this code to notepad and save it .vbs extension(for e.g. hemant.vbs) After making a vbs file just double click on that file and type anything you […]