Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid
  Private Sub Button103_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button103.Click
      ' Get the second row and second cell in the second row.
      Dim row As UltraGridRow = Me.UltraGrid1.Rows(1)
      Dim cell As UltraGridCell = row.Cells(1)
      ' You can make a cell the active cell by setting the ActiveCell property off the
      ' UltraGrid
      Me.UltraGrid1.ActiveCell = cell
      ' Or by calling Activate method off the UltraGridCell
      cell.Activate()
      ' Or by setting the Activated property off the UltraGridCell to true.
      cell.Activated = True
  End Sub