Was wondering if anybody knew of a way to wait for a process to start before any messages are sent to it.
I create the process then have a function that will send a message to the button before the process is started. Thanks for any help
Printable View
Was wondering if anybody knew of a way to wait for a process to start before any messages are sent to it.
I create the process then have a function that will send a message to the button before the process is started. Thanks for any help
Thanks that was what I was looking for! Any ideas if the program has another point where user input is required? It looks like it can only wait once for a process. Thanks
Typically a modal popup dialog is intended for interaction with user, and its popping can be detected by intercepting WM_ENTERIDLE. But reliable interception of messages in a remote process requires some more knowlege, efforts and skills comparing to your original case.Quote:
Any ideas if the program has another point where user input is required?
And the last thing. Automating applications not designed to be automated may eventually appear a real headache. ;)
Thanks for the help :D