How can I get this value from an ActiveRecord?... Can I do this without using ActiveRecord?
Which property must I access in?
Thanks,
Pd:I speak spanish, sorry because of my poor english
You can access a Cell's value from a DataRecord by:
object val = myDataRecord.Cells[ idx ].Value;
myDataRecord? where does this object come from?... could you write it for Visual Basic?
Hi,
In Visual Basic it's like this :
Dim obj As Object = myRecord.Cells(1).Value
toto is the name of my grid.
1 is the index of the cell, if you want you can replace 1 by the name of the cell .
enjoy ,
Nathalie
Thanks