is there an easier way of doing this?
iGridListView.SelectedRows.Grid.Cells(lstiGridOpen.SelectedRows.Item(0).Index, 7).Value = "Text"
Do you need to set the new text for the selected cell? If so, then the CurCell property can help you:
iGridListView.CurCell.Value = "Text"
And your call 'iGridListView.SelectedRows.Grid.Cells' looks very strange...
Can you tell us what task you need to implement so we can advise a suitable code snippet or iGrid memebr?