You are reading help file online using chmlib.com
|
Interface: ISpeechRecognizer
The CreateRecoContext method creates a recognition context object from the recognizer.
SpeechRecognizer.CreateRecoContext() As ISpeechRecoContext
The CreateRecoContext method returns an ISpeechRecoContext object.
The following Visual Basic form code demonstrates the use of CreateRecoContext.
To run this code, create a form without any controls. Copy this code and paste it into the Declarations section of the form.
Private Sub Form_Load()
Dim SharedRecognizer As SpSharedRecognizer
Set SharedRecognizer = CreateObject("SAPI.SpSharedRecognizer")
Dim myContext As Object
Set myContext = SharedRecognizer.CreateRecoContext
End Sub
You are reading help file online using chmlib.com
|