This code loops through the parent rows - but I also need to include the child rows (bands(1) and (2).
Can you assist in the code to loop through these child rows
thanks
Dim rowSelected As UltraGridRow
For Each rowSelected In Me.UltraGrid1.Rows
If rowSelected.Activated = True Then
rowSelected.Activated = False
rowSelected.Appearance.BackColor = Color.White
End If
There are some very helpful methods on the Rows collection for this, like GetFilteredInNonGroupByRows.