What I'm trying to do is for example, click a button on the program and have the program send a keystroke to another program that is not the active window. So far all I have is this
SendKeys.Send("TEST");
This works fine if the program I want to send the keystrokes to is the active window, however I want to be able to send it to a non active window does anyone have any recommendations?
Thanks