Subject Accessing SELECTED rows in a grid
Author skander_sp
I know it's not a new question, but not see a clear explanation.

I have a IB_grid linked toa IB_query

I need to know how acces to EVERY SELECTED row, in the grit to take
care about some fields in.

somebody has a good example?

I can know how many rows was selected, but need to access some field
for I := 0 to IB_Query1.RowsSelected-1 do
if IB_Query1.selected[I] then
// HOW can I access some field at THIS point?

Other suggestion will be apreciated!