Hi all,
I've upgraded one of our solutions to 2015 to see what's what.
After the upgrade one of our client add-in isn't working correctly anymore. Somehow the 'Enter' key doesn't reach the add-in. Every other key on the keyboard gets through, even pressing 'SHIFT + Enter' but not 'Enter' on it's own.
To be sure I've written a simple add-in with only a TextBox and a KeyDown event attached. But even in that add-in the 'Enter' key from the RTC does not reach the add-in.
protected override Control CreateControl()
{
TextBox txtTestEvent = new TextBox();
txtTestEvent.KeyDown += txtTestEvent_KeyDown;
return txtTestEvent;
}
void txtTestEvent_KeyDown(object sender, KeyEventArgs e)
{
MessageBox.Show(String.Format("{0} key pressed!", e.KeyCode));
}
Any ideas?
Gr, Erik
*This post is locked for comments
I have the same question (0)