1
vote
5answers
1k views
How to add words to an already loaded grammar using System.Speech and SAPI 5.3
Given the following code,
Choices choices = new Choices();
choices.Add(new GrammarBuilder(new SemanticResultValue("product", "<product/>")));
GrammarBuilder builder = new Gra …
4
votes
4answers
68 views
Hot deployment of .net assemblies
We have an application running as a Windows service on a production server. The application is partitioned into several assemblies mostly on deployment boundaries. I would like to streamline the de …
1
vote
.NET training suggestion for an average developer
I would suggest a mix of a good course to get the devs up to speed and ongoing coaching for some time. (No I'm not a trainer :-)) Try to get a budget that covers a 5 days course and a consultant th …
0
votes
Passing a Windows Service Parameters for it to act on
You can instantiate your service and pass command line arguments using the ServiceController class.
using (ServiceController serviceController = new ServiceController(serviceName))
…
0
votes
Setter / property injection in Unity without attributes
The following walkthrough shows one way of doing it through configuration. You can of course wire it through code as well.
…
1
vote
How to prevent ListBox.SelectedIndexChanged event?
You can populate the listbox using lb.Items.AddRange() instead of setting the datasource. In addition to not triggering the SelectedIndexChanged, this also won't pre-select the first item.
…
1
vote
Unity: Fatal Execution Engine Error when resolving a TimeSpan
I'm not sure why you get the error, but I tried to replace the type configuration (in the configuration file you edited out) with the following it works.
<instances>
<ad …
0
votes
Reliable(durable) distributed logging engine
I think you should be able to do this using Microsoft Enterprise Library and MSMQ out of the box. The Entlib Logging application block has a built in MSMQ listener. While we have used Entlib loggin …
