Search results for query: *

  1. M

    willing to learn

    I suggest taking a look at the basics of VB.net first. As in most cases with programming, the best way to learn is through solving your own problems. The first program you should write is some sort of "Hello World" program. A great way to get to know the language is by trying to create as many...
  2. M

    Question Speech Recognition question

    Look at that! You nailed the issue on the head. Awesome, thanks so much.
  3. M

    Question Speech Recognition question

    Interestingly enough, I tried this a while back and no cases were recognized by Windows Speech Recognition with the array. Here is what I have now, and it does not work: Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load Dim gram As New...
  4. M

    Question Speech Recognition question

    SrgsOneOf is used for alternate words to match a single set of rules, but not one single rule. The set of rules are then uploaded to a grammar set which then ties into Windows7 Speech Recognition Software. In the past, I had to type in something like this: Dim commandlist As New...
  5. M

    Question Speech Recognition question

    Tried it. Threw an error, so I imported System.Speech.Recognition.SrgsGrammar, and it did not do anything. Perhaps I misunderstood the code you presented?
  6. M

    Question Speech Recognition question

    I fail to see the difference in what you just posted and what you posted before. Just the import clause? Because that does not alter anything.
  7. M

    Question Speech Recognition question

    I do not think it is as simple as that. I tried to implement this and no speech recognized handlers fired off. Any other suggestions?
  8. M

    Question Speech Recognition question

    Hey, I have been trying to create a set of grammar rules for a speech recognition program with an array, but cannot seem to accomplish this task. Here is the general idea: Dim commandlist As New Recognition.SrgsGrammar.SrgsOneOf(websites(0), websites(1), websites(2))...
Back
Top