Is that possible? maybe i'm wrong but i dont see any keyactionmapping on the ultratexteditor!
thank you
Hi Matt,
so no KeyActionMapping on the ultraTexeditor. No problem.
I have solved using SendKeys.Send("{TAB}");instead of this.SelectNextControl((Control)sender, e.Shift, true, true, true); because it does not work with nested controls.
Thank you.
This would need be be handled by specifically coding logic in the KeyDown event of the UltraTextEditor:
private void ultraTextEditor1_KeyDown(object sender, KeyEventArgs e){ if (e.KeyCode == Keys.Enter) { this.SelectNextControl((Control)sender, e.Shift, true, true, true); }}
-Matt