How can I minimize Microsoft Speech Recognition: (source: microsoft.com ) using C# or python?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For C#:
Using
System.Diagnostics.Processyou can select the process when it’s running. From there you can get the MainWindow Handle at.MainWindowHandleand then call the windows API to minimize the application.Unfortunately I do not know the specifics for that call, you’d have to google it.