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 …
2
votes
1answer
2k views
PGP Encryption with BouncyCastle C# causes invalid key warning on signature verification
We need to PGP encrypt files and send them over FTP to a third party. The files are encrypted with the DH/DSS public key of the third party and signed with our private key.
The third party …
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 …
2
votes
How to list the contents of a .zip folder in c#?
I'm relatively new here so maybe I'm not understanding what's going on. :-)
There are currently 4 answers on this thread where the two best answers have been voted down. (Pearcewg's and cxfx's) The …
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))
…
5
votes
How can I become a better C# programmer?
I agree with most of the answers so far, but I think that if you want to improve as a developer you can benefit greatly by not running solo. Try to find someone who can coach you. Over the years I' …
1
vote
PGP Encryption with BouncyCastle C# causes invalid key warning on signature verification
While I can't give a thorough explanation as to the details of the problem, here is a solution that works.
First of all it seems that the different PGP implementations are very sensitive to which p …
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.
…
2
votes
Run one instance from the application
The VB.Net team has already implemented a solution. You will need to take a dependency on Microsoft.VisualBasic.dll, but if that doesn't bother you, then this is a good solution IMHO.
See the end o …
0
votes
C# Waiting for other services to start
In addition to what other answers have alredy pointed out, if one of those services is SQL Server you will need to ensure that the specific database is available as well as the SQL Server service i …
1
vote
Error inserting data using SqlBulkCopy
Using your original table script, the following code works.
private static DataTable GetTable()
{
var list = new List<DataColumn>();
list.Add(new DataColumn("amount", …
3
votes
How can I programmatically make certain parts of a label, in a windows form, bold?
http://stackoverflow.com/questions/11311/formatting-text-in-winform-label
…
0
votes
Having troubles loading related entities (Eager Load) with ObjectContext.CreateQuery (Entity Framework and Repositories)
The previous rev of this answer is incorrect as pointed out by Craig in the comments. Since I can't delete this answer (because of comments?) I'll at least try to leave something that's not incorre …
1
vote
