I am trying to develop a background working C# application, that needs to detect when a random 3rd party application is opened, filled out and a button is clicked.
I know i can get some info for the 3rd party app as a process, but is it possible to iterate through all of it's controls and get their values?
I've read something about "anonymous pipes" but don't know if those could be implemented in a case like this one, and how.
My final goal is to get the value of one specific textbox in the app, when a "Print" button is clicked in that same app. The third party app was not developed by me, so i only have it as an .exe but i can see that it has textboxes, labels and buttons.