Subject Re: [IBO] Transaction question
Author Harald Klomann
Riho-Rene Ellermaa wrote:
>

> After Refresh() and First(), I get the values OK. When I call
> InvalidateBookmark() and then try to access values, I get 0
> Seems like my bookmark calling is wrong
>

Riho,

you could also use InvalidateRowNum(), which does the same.

Delphi Syntax is :

procedure TForm1.Button2Click(Sender: TObject);
begin
IB_Query1.InvalidateRowNum(IB_Query1.RowNum);
IB_Query1.Edit;
end;


Harald