M
marych1979
Guest
How can you make it simple speech recognizer.I have this:
Imports Windows.Media.SpeechRecognition
Public NotInheritable Class MainPage
Inherits Page
Dim voice As New SpeechRecognizer()
Private Sub Grid_Loaded(sender As Object, e As RoutedEventArgs)
TextBox1.Text = voice.RecognizeAsync.ToString
End Sub
Private Sub Buton1_Click(sender As Object, e As RoutedEventArgs) Handles Buton1.Click
End Sub
End Class
how to improve it
Continue reading...
Imports Windows.Media.SpeechRecognition
Public NotInheritable Class MainPage
Inherits Page
Dim voice As New SpeechRecognizer()
Private Sub Grid_Loaded(sender As Object, e As RoutedEventArgs)
TextBox1.Text = voice.RecognizeAsync.ToString
End Sub
Private Sub Buton1_Click(sender As Object, e As RoutedEventArgs) Handles Buton1.Click
End Sub
End Class
how to improve it
Continue reading...