I have a C++ program that is launched using cmd. After being launched, he show off a pop up where the user has to write his login/password.
I want to launch this program with another program (wrote in C#), I know how to do that with System.Diagnostics.Process.Start
.
So my question is: ho can I fill the login/password's fields in my C# program ?
Answer:
@DmitriyZapevalov was right. Here is some usefull links that helped me:
- The user32 API doc
- How to use the user32 API in .NET (C# and VB)