How to make your computer talk or speak to you (INTERACTIVELY) using VBS
This video shows how to make your computer asks questions!Here's the code:StrText=("Hi, my name is Microsoft Sam")set ObjVoice = CreateObject("SAPI.SpVoice")ObjVoice.Speak StrTextStrText=("What is your name?")set ObjVoice = CreateObject("SAPI.SpVoice")ObjVoice.Speak StrTextname=inputbox("What is your name?")StrText=("Nice to ...