Subject | Re: [IBO] Transaction question |
---|---|
Author | Harald Klomann |
Post date | 2001-03-23T13:08:49Z |
Riho-Rene Ellermaa wrote:
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
>Riho,
> 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
>
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