Is it possible to telecontrol a program that is running by using c#? How to do that?
I have to convert about 500 files to a specific file format by opening it -> converting -> saving. So I want to create an alogrythm that will do the work.
Thank you for your help.
It seems to me that you are best using a scripting language for window automation. One of the most popular ones is AutoHotkey.
If you need to do in .NET you might want to look at the Windows Automation API coming with .NET 3.5.
Without knowing further details about the program that you want to automate it is not easy to give you more detailed advice.