Subject value of IB_Grid Cell
Author Christian
i would like to get the value of a IB_Grid-cell in the keyup or -down
event immediately after input & leaving the cell.

if key = VK_RETURN then
begin
label1.Caption := GridPOS.SelectedField.asstring;
end;

this works only by the second VK_RETURN.
on the first VK_RETURN GridPOS.SelectedField.asstring is empty.
how is the right way to get the value?

thanks in advance christian.