<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>Speech</title>
        <link>http://www.onteorasoftware.com/category/27.aspx</link>
        <description>Speech</description>
        <language>en-US</language>
        <copyright>Ken Tucker</copyright>
        <generator>Subtext Version 2.1.2.2</generator>
        <item>
            <title>Speech Recognition</title>
            <link>http://blog.onteorasoftware.net/archive/2007/12/11/speech-recognition.aspx</link>
            <description>&lt;p&gt;
The dot net framework 3.0 added the system.speech namespace.  One of the new classes they added is the SpeechRecognizer.  The speech recognizer class has a SpeechRecognized event which you can use to make your application accept dictation. 
&lt;/p&gt;
&lt;p&gt;
 
&lt;/p&gt;
&lt;p&gt;
For this example you need to create a .net 3.0 or .net 3.5 windows forms app.  Place a multi-line textbox on the form.  
&lt;/p&gt;
&lt;p&gt;
 
&lt;/p&gt;
&lt;p&gt;
 
&lt;/p&gt;
&lt;p&gt;
Imports System.Speech&lt;br /&gt;
Imports System.Speech.Recognition 
&lt;/p&gt;
&lt;p&gt;
Public Class Form1&lt;br /&gt;
    Dim recognizer As New SpeechRecognizer 
&lt;/p&gt;
&lt;p&gt;
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load&lt;br /&gt;
        AddHandler recognizer.SpeechRecognized, AddressOf SpeechRecognized&lt;br /&gt;
    End Sub 
&lt;/p&gt;
&lt;p&gt;
    Private Sub SpeechRecognized(ByVal sender As Object, ByVal e As SpeechRecognizedEventArgs)&lt;br /&gt;
        TextBox1.Text &amp;amp;= e.Result.Text&lt;br /&gt;
    End Sub&lt;br /&gt;
End Class 
&lt;/p&gt;
&lt;img src="http://blog.onteorasoftware.net/aggbug/39.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ken Tucker</dc:creator>
            <guid>http://blog.onteorasoftware.net/archive/2007/12/11/speech-recognition.aspx</guid>
            <pubDate>Tue, 11 Dec 2007 22:53:58 GMT</pubDate>
            <wfw:comment>http://blog.onteorasoftware.net/comments/39.aspx</wfw:comment>
            <comments>http://blog.onteorasoftware.net/archive/2007/12/11/speech-recognition.aspx#feedback</comments>
            <slash:comments>4</slash:comments>
            <wfw:commentRss>http://blog.onteorasoftware.net/comments/commentRss/39.aspx</wfw:commentRss>
        </item>
    </channel>
</rss>