let take example here:
Make the computer talk
strText = "your message here"
Set objVoice = CreateObject("SAPI.SpVoice")
objVoice.Speak strText
for that you need one command button.. double clik it..
and put the code to it.. here the full code
Private Sub Command1_Click()
strText = "your message here"
Set objVoice = CreateObject("SAPI.SpVoice")
objVoice.Speak strText
End Sub
"your message here" that mean you can change it to whatever you want..
and more important, what vb u use.. 6.0?