Subject Re: [IBO] Bookmark
Author nibler@t-online.de
Burak,

> has anyone have any code piece to use bookmarks with IBO native dataset?

procedure XXXXX;
var
bm:string;
begin

// get the bookmark of the current record

bm := qry.Bookmark;

// do some scrolling in the dataset

....

// return to the bookmarked record

qry.Bookmark := bm;

end;


Harald