How to keep the button "Control" pressed?
See the question and my original answer on StackOverflowYou can't emulate Ctrl pressed all the time, you must add the ^ to each Send command, like this:
SendKeys.Send("^{DOWN}");
see the doc here: SendKeys.Send Method