![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Newbie
Join Date: Nov 2005
Posts: 13
Rep Power: 0
![]() |
hi i am new to pragramming and i am trying to learn on my own i have vb6. Does any one know any good websites that could help me please. also someone has told me that making an auto talker is easy. Can any one tell me how to go about this thank you.
:banana: 13en :banana: |
|
|
|
|
|
#2 |
|
Programmer
Join Date: Jan 2006
Location: UK
Posts: 55
Rep Power: 3
![]() |
http://www.microsoft.com/speech/download/sdk51/ Should help.
|
|
|
|
|
|
#3 |
|
Newbie
Join Date: Oct 2005
Posts: 9
Rep Power: 0
![]() |
I can help you.
I have made plenty of autotalkers, all being pretty much the same. Heres the simple way of making one: Make: 2 Textboxes called Text1 and Text2 where Text1 will have the text you need to auto inside and Text2 for the interval. 2 command buttons called Command1 and Command2 with the captions Start and Stop Timer called Timer1 and have enabled=false in the properties window. Next add this code to your form: Code: Private Sub Timer1_Timer() Timer1.Interval = Text2.Text SendKeys Text1.Text SendKeys "{enter}" End Sub Private Sub Command1_Click() Timer1.Enabled = True End Sub Private Sub Command2_Click() Timer1.Enabled = False End Sub Note that 1000 in the interval box = 1 second and 100 will be every 10th of a second etc... Any problems? Email me at chris@programscape.org |
|
|
|
|
|
#4 |
|
Expert Programmer
|
Pissi, essentially all you are doing is copying the text in one box, into the other, which could be accomplished with text2.text = text1.text. I think he is talking about directx speech / text-to-speech.
After you have the sdk, try this tutorial: http://www.developerfusion.co.uk/show/1989/ If you dont like that, google text to speech for vb. ![]() |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|