I want to make ^N work the same as Down arrow in a tree control. I thought I'd just have to add the following to the KeyDown handler:
SendKeys.Send("{Down}");
but this gets treated as a Control-Down arrow since the control key is currently pressed. The msdn page describes how to turn on the control modifier but not how to turn it off.
Thanks, Keith