I want to build an application with a Textbox that captures the voice transcription create by Dragon Medical Practice Edition 4 (DMPE4) in a Windows environment. By default DMPE4 will place the text of whatever is transcribed into the current location of the cursor. This means that if a user clicks somewhere else other than where they want their dictation then the speech will be transcribed into a different window (or worse if no text box is available what they dictate won't appear anywhere).
I want a WPF application with a textbox that will capture the text regardless of where the current cursor location is, it should instead place the transcribed text into the textbox where the cursor was last. As long as the application is open and the window with the textbox is active it should not be possible to transcribe text anywhere else. I still want to use the DMPE4 application and all of the other features of it I just want the transcribed text to go into a specific textbox.
The few tutorials I found were based on System.Speech
which is Microsoft's built in speech recognition, I want to use DMPE4 and I can't seem to find a good starting point.
DMPE4 has something similar called the Dictation Box, but in order to get the text from the Dictation Box to the location of where the text needs to be there are additional steps, I want the text to go directly into the Textbox of the new application.