Remote control another Application

  • Thread starter Thread starter Matthias Kwiedor
  • Start date Start date
M

Matthias Kwiedor

Hello!

Is there a way in "c#" to remote control another application on the same pc
running at the same time. For example Clicking on a button.

The Application which should be controled is not "c#" application!

Any comment would be great


Regards




Matthias
 
Matthias,

You could, but there is no standard way. At the worst, you can always
send window messages to that application (assuming it is a windows app).
Other applications have automation interfaces, or other points you can
connect to in order to control the app.

In the end, it is specific to the app that you are interacting with.

Hope this helps.
 
Back
Top