SBendBuckeye
Programmer
Hello all,
We have a 3rd party engineering application that we need to automate (even though it does not support automation). Using file associations, I can start the application with the following code:
It has a menu shortcut for F10 to start the process I need to watch.
Basically, I need to do the equivalent of SendKeys to the hWnd and then monitor some child windows to determine when it has completed. Can anyone point me or get me started? Thanks in advance for any ideas and/or suggestions!
We have a 3rd party engineering application that we need to automate (even though it does not support automation). Using file associations, I can start the application with the following code:
Code:
System.Diagnostics.Process.Start(Me.txtOutputFile.Text.Trim)
Basically, I need to do the equivalent of SendKeys to the hWnd and then monitor some child windows to determine when it has completed. Can anyone point me or get me started? Thanks in advance for any ideas and/or suggestions!