C# - Access to another application and send keys -
i want control application , send keys application textbox1
, want access 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 need sending keys answer ... dont know how...
Comments
Post a Comment