Skip to content

{ Monthly Archives } December 2008

Speech Recognition and the System.Speech namespace

I had a problem recently where I wanted to find out, very roughly, the topic of a set of un-annotated lectures. I needed a recognition engine that was speaker-independent, and required no training, as I don’t personally know the guy who did them.
In the .NET framework 3.5, you get access to the System.Speech namespace which [...]

Tagged , , ,

Databinding with Windows Forms controls

In years gone by, to add a collection of items to a collection control, I’ve gone through the long winded way of calling Items.Add on a control, such as a ComboBox. The problem is it is then difficult to resolve the reference of the item you have selected, plus extra code is necessary to clear [...]