Subject RE: [IBO] Bookmarks and Searching from TTable to TIB_Query
Author Claudio Valderrama C.
> -----Original Message-----
> From: Chris at Visible Changes [mailto:chulsey@...]
> Sent: Lunes 11 de Diciembre de 2000 11:33
>
> I use GetBookmark to save my place.

bm := ib_query.BookMark;

> I use GotoBookmark to return to my place.

ib_query.BookMark := bm;

> I use FreeBookmark to free the bookmark when I am done.

Forget it. The BDE uses an untyped pointer. IBO uses a string, that's the
hex representation of the PK fields. So, in IBO, two datasets are compatible
if they have the same columns (same data types) in the PK in the same order.
So, even two different tables can be compatible.

C.