Subject | Re: [IBO] Bookmark |
---|---|
Author | nibler@t-online.de |
Post date | 2003-10-17T13:36:40Z |
Burak,
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
> 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