Search Results

0
votes

How do I find the type of the object instance of the caller of the current function?

Walk up the stack checking for base class - derived class relationship. var type = new StackFrame(1).GetMethod().DeclaringType; foreach (var frame in new StackTrace( …
0
votes

Microsoft Speech Recognizer 6.1 Training Files

Are you sure you are looking in the right place? Check the registry under HKEY_CURRENT_USER\Software\Microsoft\Speech\RecoProfiles for info about user profiles and training data. I'm on Vista, cont …
1
vote

How to add words to an already loaded grammar using System.Speech and SAPI 5.3

It sounds like you need to use some indirection, via the a grammar rule reference. This can be done with the GrammarBuilder.AppendRuleReference method. It might be easier to test out your grammars …
1
vote

C# Speech Recognition

Check that you have a language engine matching the language you have configured in Vista. See http://support.microsoft.com/kb/934377 …
1
vote

How to add words to an already loaded grammar using System.Speech and SAPI 5.3

An alternative, if you have very large grammars, would be to use the dictation grammar option. There is a standard dictation grammar, but you could also specify your own. See …
2
votes

Listen for ICMP packets in C#

There are a number of posts on the web mentioning the problem of ICMP Port Unreachable packets no longer being accessible on Vista. …
1
vote

design ideas for serving up high-frequency data

"RRDTool is the OpenSource industry standard, high performance data logging and graphing system for time series data." It's in tw …