I have a UltraGrid and the three bands I need to read the records of the Bands (3), which is on the grid how to do, please
Gracias,
DTM
Helpmeee please
To get the rows of any band use:
grid.Rows.GetRowEnumerator(GridRowType.DataRow, bandIndex, null);
for example, if you need the third band use:
grid.Rows.GetRowEnumerator(GridRowType.DataRow, 2, null);