This is to Exit and Set Focus to next control. I haven't been able to catch Ctrl+Tab. If you manage it, please let me know:
Protected Overrides Sub OnKeyDown(ByVal e As System.Windows.Forms.KeyEventArgs) If e.KeyCode = Keys.E AndAlso e.Control Then SetFocusToNextControl(True) End If
MyBase.OnKeyDown(e) End Sub
And this is to enter in Edit mode:
Protected Overrides Sub OnEnter(ByVal e As System.EventArgs) Me.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.ActivateCell) Me.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.EnterEditMode)
MyBase.OnEnter(e) End Sub
Hope it helps.