text to speech problem
-
I use Speech component and when speaker is reading, the other commands not work, how can i enable pause and stop during speaking? thanks everybody for the answers
-
I use Speech component and when speaker is reading, the other commands not work, how can i enable pause and stop during speaking? thanks everybody for the answers
-
Use the Speak command in a background worker so that nothing else is defunct till the speech is over.
so what shall i do? use threads? at micro programing it was so easy, just check a flag or bit for an event each certain time. but i can not found any thing in c#!
-
so what shall i do? use threads? at micro programing it was so easy, just check a flag or bit for an event each certain time. but i can not found any thing in c#!
BackgroundWorker Component Do you know about them? What u hav 2 do is Write the code to be executed in their DoWork event. Then the play button should have code like BackgroundWorker1.RunWorkerAsync() Read about BackgroundWorker. That is a simple and effective solution