Subject Re: [IBO] bookmark
Author Helen Borrie
At 12:28 AM 16/05/2007, you wrote:
>Hi,
>
>
>
>I have a grid and it would like to select (bookmark) all the registers that
>are being shown.

Registers = rows?

MyIB_Query.SelectAll(True);

Note that this selects (or, if the argument = False, deselects) ALL
rows in the dataset, not just those that have reached the
buffers. And of course, since it implies a buffered set, it only
works for TIB_Query, not TIB_Cursor.

This question makes me itchy. As a matter of curiosity, why would
you want to do this?

Helen