I want to control another application and send keys to the application textBox1
, Also i want to access the app using Application.Launch("Name.exe")
Application application = Application.Launch("foo.exe");
Window window = application.GetWindow("bar", InitializeOption.NoCache);
Button button = window.Get<Button>("save");
button.Click();
And i need for sending keys like this answer ... but dont know how...