Use dotnet spy and try to find where the required data is stored and script it like
For k= 0 to …….SwfTable("ultraGrid1").Object.Datasource.Column.count-1
If …….SwfTable("ultraGrid1").Object.Datasource.Column.Item(k).ColumnName="0;Item' Then
ColumnIndex=k
End If
obj=…….SwfTable("ultraGrid1").Object.Datasource.Row(RowNo).Array
required text=obj(ColumnIndex)
Let me know if it doesnot work.
Fawaz