The following Code gives me the error.
The error in on the line where i call the show method.
"Object reference not set to an instance of an object."
Private Sub UltraGrid2_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles UltraGrid2.KeyUp
If e.KeyCode = Keys.F7 Then
Me.UltraGrid2.ActiveRow.RowEditTemplate.Show()
End If
End Sub