I am trying to send keys to a webpage from a windows application. I send CTRL-A and CTRL-C for copying, but sometimes the textbox in webpage gets "C" or "A".
The code for copying is like this:It happens not very often. But I want a safer way to send. Any idea?Code:Thread.Sleep(500); SendKeys.SendWait("^(A)"); SendKeys.SendWait("^(C)"); Thread.Sleep(500);


Reply With Quote