I am trying to SendKeys
to a user control which has a web browser inside. I haven't found a decent solution apart from copying the data to a clipboard and pasting it inside the control with a button. Can anyone help on this? I don't currently have any code for this yet.
I've tried:
this.webBrowser1.Focus();
SendKeys.SendWait("example");
However, I don't know how to position the code to target the user controls and web browser in the fashion I want it.
Does anybody know how to do this?