Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

text to speach coding ? 1

Status
Not open for further replies.

psybertek

Technical User
Mar 26, 2002
30
US
Hello all,
I am in need of some coding examples in VB 6 for text to speach. I can't seem to find any help in the MSDN library. I need the project to count some numbers and then convert the text to speach.
(i.e.)
for a = 1 to 4
(speak a)
next a
what I need is a little more involved but this is the gist of what I am trying to do.
Any help would be greatly appreciated.

____________________________
"Comuter junkies, Never die, They just upload."
 
Hi,

Place a DirectSS speak control on a form.
And:
-------------------------------------------------------
Dim i as long
for i = 1 to 4
DirectSS1.Speak i
next i
------------------------------------------------------- Sunaj
'The gap between theory and practice is not as wide in theory as it is in practice'
 
To Sunaj,
Thank you, Thank you, Thank you. That worked quite well.
I didn't think it was going to be too dificult, but I just couldn't figure it out.
I really have to say that all the kind folks here, have been a lot of help.

psybertek
________________________________________________
"Comuter junkies, Never die, They just upload."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top